blob: 87a686f7878a0ee3a98eec17ccd6733d8bcfebdc (
plain) (
blame)
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
|
# Maintainer: Dan Theisen <djt@hxx.in>
pkgname=xbindkeys
pkgver=1.8.6
pkgrel=0
pkgdesc="a program that allows you to launch shell commands with your keyboard or mouse"
url="https://www.nongnu.org/xbindkeys/xbindkeys.html"
arch="all"
license="GPL-2.0+"
depends=""
makedepends="libx11-dev"
subpackages="$pkgname-dbg $pkgname-doc"
source="https://www.nongnu.org/xbindkeys/xbindkeys-$pkgver.tar.gz"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--disable-guile
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="3c77541eae9f87d2020c2272984c221094276dae2a8690c5cec9fe1b23c0139229b8f56876170da70684aeaa128642349b6835c375d473186cbf8123517173ba xbindkeys-1.8.6.tar.gz"
|