diff options
author | Anton Leontiev | 2017-03-07 07:20:03 +0300 |
---|---|---|
committer | Anton Leontiev | 2017-03-07 07:20:03 +0300 |
commit | 455abdb3a1c998c02a903f797babcb27facb1d34 (patch) | |
tree | eae337a5b7b67de33941e0db543f3502771270d7 /PKGBUILD | |
download | aur-455abdb3a1c998c02a903f797babcb27facb1d34.tar.gz |
Initial version v0.2.2
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..94badad69da --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Contrinutor: Anton Leontiev <scileont /at/ gmail.com> + +pkgname=pokoy +pkgver=0.2.2 +pkgrel=1 +pkgdesc='Lightweight daemon for X that helps prevent RSI and other computer related stress' +arch=('i686' 'x86_64') +url='https://github.com/ttygde/pokoy' +license=('GPL2') +depends=('xcb-util-wm' 'xcb-util-keysyms') +source=("$pkgname-$pkgver.tar.gz::https://github.com/ttygde/$pkgname/archive/v$pkgver.tar.gz") +md5sums=('ea74913145ee81a63189a9396c246af6') + +build() { + make -C $pkgname-$pkgver +} + +package() { + make -C $pkgname-$pkgver DESTDIR="$pkgdir" install +} + |