blob: 557dbf20c1f3d5a907d17cf85ed1bcdd78500f27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Aakash Sharma <aakashsensharma@gmail.com>
# Contributor: Sergey A. <murlakatamenka@disroot.org>
pkgname='swhkd-git'
_pkgname="swhkd"
pkgver=1
pkgrel=1
arch=('x86_64')
url="https://github.com/waycrate/swhkd"
pkgdesc="A display server independent hotkey daemon inspired by sxhkd."
license=('BSD')
depends=('polkit')
makedepends=('rustup' 'make' 'git' 'scdoc')
conflicts=('swhkd-musl-git')
source=("$_pkgname::git+https://github.com/waycrate/$_pkgname")
sha256sums=('SKIP')
build(){
cd "$_pkgname"
scdoc < ./swhkd.1.scd > swhkd.1.gz
scdoc < ./swhks.1.scd > swhks.1.gz
scdoc < ./swhkd.5.scd > swhkd.5.gz
scdoc < ./swhkd-keys.5.scd > swhkd-keys.5.gz
make setup
make
}
package() {
cd "$_pkgname"
install -Dm 755 ./target/release/swhkd "$pkgdir/usr/bin/swhkd"
install -Dm 755 ./target/release/swhks "$pkgdir/usr/bin/swhks"
install -Dm 644 -o root ./com.github.swhkd.pkexec.policy -t "$pkgdir/usr/share/polkit-1/actions"
install -Dm 644 ./*.1.gz -t "$pkgdir/usr/share/man/man1/"
install -Dm 644 ./*.5.gz -t "$pkgdir/usr/share/man/man5/"
}
pkgver() {
cd $_pkgname
echo "$(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2|cut -d\- -f1).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)"
}
|