diff options
Diffstat (limited to 'unmaintained/triggerhappy')
-rw-r--r-- | unmaintained/triggerhappy/APKBUILD | 58 | ||||
-rw-r--r-- | unmaintained/triggerhappy/triggerhappy.confd | 2 | ||||
-rw-r--r-- | unmaintained/triggerhappy/triggerhappy.initd | 12 |
3 files changed, 0 insertions, 72 deletions
diff --git a/unmaintained/triggerhappy/APKBUILD b/unmaintained/triggerhappy/APKBUILD deleted file mode 100644 index ebf23ce0c8..0000000000 --- a/unmaintained/triggerhappy/APKBUILD +++ /dev/null @@ -1,58 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=triggerhappy -pkgver=0.3.4 -pkgrel=1 -pkgdesc="A lightweight hotkey daemon" -url="https://github.com/wertarbyte/triggerhappy" -arch="all" -license="GPL" -depends="" -depends_dev="" -makedepends="$depends_dev perl" -install="" -subpackages="$pkgname-doc" -source="triggerhappy-$pkgver.tar.gz::https://github.com/wertarbyte/triggerhappy/archive/release/$pkgver.tar.gz - triggerhappy.initd - triggerhappy.confd - " - -_builddir="$srcdir"/triggerhappy-release-$pkgver -prepare() { - local i - 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 || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 - install -D udev/triggerhappy-udev.rules \ - "$pkgdir"/etc/udev/rules.d/50-triggerhappy.rules \ - || return 1 - install -d "$pkgdir"/etc/triggerhappy/triggers.d || return 1 - install triggerhappy.conf.examples \ - "$pkgdir"/etc/triggerhappy/triggerhappy.conf || return 1 - install -Dm755 "$srcdir"/triggerhappy.initd \ - "$pkgdir"/etc/init.d/triggerhappy || return 1 - install -Dm644 "$srcdir"/triggerhappy.confd \ - "$pkgdir"/etc/conf.d/triggerhappy || return 1 -} - -md5sums="9719903899b3082e75a7ff6e9c00752d triggerhappy-0.3.4.tar.gz -47d1f804b364758f8742f487926468b4 triggerhappy.initd -b96c7efb0c27a2d598ebab9cb8dd5dd9 triggerhappy.confd" -sha256sums="68001858df715527326850940a71690fda9d159ac73bed4a580fb7d2ffd61c83 triggerhappy-0.3.4.tar.gz -3d02676adbe3df0a6517754f78480364284521c0c6637a46419131d02025c66b triggerhappy.initd -1601b34ed30ec11293a353937669d030d811357fa2e0f5eb7ff04874daf91702 triggerhappy.confd" -sha512sums="cf08554a41019019c1142368273dc781c840bb9de81b9a386b4debd34f37816bfe516077f7192779822aa5662b3fadd76a6ff141e7c038b65dd7f51e92135e4c triggerhappy-0.3.4.tar.gz -b7521739335576f6bfc1c8a440cfe0b137862a07fae1138dcec2a082a8043dd9b64c54c64b62de06e06c0ee003c04e962a8c9be4f60d9ea3ca0898cfde4320a6 triggerhappy.initd -5f31b9736e8ee8a7c8125dd5c14c4cdf515a6d57c36d04b9b1949cdb6150f25ef264ed8ee5e31f0d62de12db151df5aec9a325ff5d5b5ba0b3b7105c76cd07a0 triggerhappy.confd" diff --git a/unmaintained/triggerhappy/triggerhappy.confd b/unmaintained/triggerhappy/triggerhappy.confd deleted file mode 100644 index f449481e51..0000000000 --- a/unmaintained/triggerhappy/triggerhappy.confd +++ /dev/null @@ -1,2 +0,0 @@ -# specify input device(s) -#devices="/dev/input/event0" diff --git a/unmaintained/triggerhappy/triggerhappy.initd b/unmaintained/triggerhappy/triggerhappy.initd deleted file mode 100644 index ac707e927c..0000000000 --- a/unmaintained/triggerhappy/triggerhappy.initd +++ /dev/null @@ -1,12 +0,0 @@ -#!/sbin/runscript - -: ${socket:=/var/run/thd.socket} -: ${triggers:=/etc/triggerhappy/triggers.d} - -command=/usr/sbin/thd -pidfile=/var/run/thd.pid -command_args="--daemon --socket $socket --triggers $triggers $devices --pidfile $pidfile" - -depend() { - before udev -} |