mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 17:22:07 +01:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
# Contributor: Olivier Mauras <olivier@mauras.ch>
|
|
# Maintainer:
|
|
pkgname=sxhkd
|
|
pkgver=0.5.5
|
|
pkgrel=0
|
|
pkgdesc="Simple X hotkey daemon"
|
|
url="https://github.com/baskerville/sxhkd"
|
|
arch="all"
|
|
license="bsd"
|
|
depends=""
|
|
depends_dev="xcb-util-keysyms-dev libxcb-dev"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/baskerville/sxhkd/archive/$pkgver.tar.gz"
|
|
|
|
_builddir=$srcdir/$pkgname-$pkgver
|
|
prepare() {
|
|
# Apply patches
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make PREFIX=/usr DESTDIR="$pkgdir" install || return 1
|
|
# Copy examples
|
|
mkdir "$pkgdir"/usr/share/$pkgname
|
|
cp -r examples "$pkgdir"/usr/share/$pkgname
|
|
}
|
|
|
|
md5sums="e04b8d7173059bce156bec6d8cd4297d 0.5.5.tar.gz"
|
|
sha256sums="e6699f77564e34a890d27f6c251e1ed29b04f5177e48290e7f02948497f04313 0.5.5.tar.gz"
|
|
sha512sums="a0ea812e4cbd63330768349045547f330cdaeec7edc3270af7e7acc4b025f7aa1d2550214db0aef9621ba619e82ee9459ee76b050cc23f780f67ed0f26e9550b 0.5.5.tar.gz"
|