sxhkd: initial commit

This commit is contained in:
Maximilian Dietrich 2013-09-24 14:36:33 +02:00
parent 9fd2498b3b
commit da43526a01
3 changed files with 27 additions and 0 deletions

6
sxhkd/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/sxhkd
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/sxhkd.1.gz

1
sxhkd/.md5sum Normal file
View File

@ -0,0 +1 @@
d19d83e020066507c664de0546d0c3b6 0.4.3.tar.gz

20
sxhkd/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: A simple X hotkey daemon
# URL: https://github.com/baskerville/sxhkd
# Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
# Depends on: xorg-xcb-util xorg-xcb-util-keysyms
name=sxhkd
version=0.4.3
release=1
source=(https://github.com/baskerville/$name/archive/$version.tar.gz)
build () {
cd $name-$version
make
make DESTDIR=$PKG \
PREFIX=/usr \
MANPREFIX=/usr/man \
install
# write access only for root
chmod 644 $PKG/usr/man/man1/sxhkd.1
}