feature/prod-ready (#1)
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
15
packaging/aur/.SRCINFO
Normal file
15
packaging/aur/.SRCINFO
Normal file
@@ -0,0 +1,15 @@
|
||||
pkgbase = k-launcher-bin
|
||||
pkgdesc = GPU-accelerated command palette launcher for Linux (Wayland/X11)
|
||||
pkgver = 0.1.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/GKaszewski/k-launcher
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
depends = wayland
|
||||
depends = libxkbcommon
|
||||
provides = k-launcher
|
||||
conflicts = k-launcher
|
||||
source = k-launcher-0.1.0::https://github.com/GKaszewski/k-launcher/releases/download/v0.1.0/k-launcher
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = k-launcher-bin
|
||||
17
packaging/aur/PKGBUILD
Normal file
17
packaging/aur/PKGBUILD
Normal file
@@ -0,0 +1,17 @@
|
||||
# Maintainer: k-launcher contributors
|
||||
pkgname=k-launcher-bin
|
||||
pkgver=0.1.0
|
||||
pkgrel=1
|
||||
pkgdesc="GPU-accelerated command palette launcher for Linux (Wayland/X11)"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/GKaszewski/k-launcher"
|
||||
license=('MIT')
|
||||
depends=('wayland' 'libxkbcommon')
|
||||
provides=('k-launcher')
|
||||
conflicts=('k-launcher')
|
||||
source=("k-launcher-${pkgver}::https://github.com/GKaszewski/k-launcher/releases/download/v${pkgver}/k-launcher")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
package() {
|
||||
install -Dm755 "k-launcher-${pkgver}" "${pkgdir}/usr/bin/k-launcher"
|
||||
}
|
||||
11
packaging/systemd/k-launcher.service
Normal file
11
packaging/systemd/k-launcher.service
Normal file
@@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=k-launcher command palette daemon
|
||||
After=graphical-session.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/k-launcher
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=graphical-session.target
|
||||
8
packaging/systemd/k-launcher.socket
Normal file
8
packaging/systemd/k-launcher.socket
Normal file
@@ -0,0 +1,8 @@
|
||||
[Unit]
|
||||
Description=k-launcher IPC socket
|
||||
|
||||
[Socket]
|
||||
ListenStream=%t/k-launcher.sock
|
||||
|
||||
[Install]
|
||||
WantedBy=sockets.target
|
||||
Reference in New Issue
Block a user