diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-10 02:44:12 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-10 02:44:12 +0100 |
commit | cb99a0831b5ee2245d38013f10355938bd4e4646 (patch) | |
tree | 0e71f0ddfbf1bd7ee265665b17df3e87164b837c /dist | |
parent | update deps (diff) | |
download | sleep-until-cb99a0831b5ee2245d38013f10355938bd4e4646.tar.gz sleep-until-cb99a0831b5ee2245d38013f10355938bd4e4646.tar.bz2 sleep-until-cb99a0831b5ee2245d38013f10355938bd4e4646.tar.xz |
dist
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'dist')
-rw-r--r-- | dist/archlinux/stable/.gitignore | 6 | ||||
-rw-r--r-- | dist/archlinux/stable/PKGBUILD | 26 | ||||
-rw-r--r-- | dist/archlinux/stable/sleep-until.install | 20 |
3 files changed, 52 insertions, 0 deletions
diff --git a/dist/archlinux/stable/.gitignore b/dist/archlinux/stable/.gitignore new file mode 100644 index 0000000..9ac8b17 --- /dev/null +++ b/dist/archlinux/stable/.gitignore @@ -0,0 +1,6 @@ +* +!PKGBUILD +!sleep-until.install +!.git* +*~ + diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD new file mode 100644 index 0000000..b6149d7 --- /dev/null +++ b/dist/archlinux/stable/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=sleep-until +pkgver=1 +pkgrel=1 +pkgdesc='Sleep until a specified time' +arch=('any') +url='https://github.com/maandree/sleep-until' +license=('AGPL3') +depends=('linux>=2.6.25' 'glibc>=2.8') +makedepends=('glibc>=2.8' 'gcc' 'general-preprocessor' 'grep' 'texinfo' 'auto-auto-complete') +install=sleep-until.install +source=(https://github.com/maandree/sleep-until/archive/$pkgver.tar.gz) +sha256sums=(fa1776be3f29c550f6eff48bcf714c76fcf399f1c7bac1d7306c5abc7fe14e17) + + +build() { + cd "$srcdir/sleep-until-$pkgver" + make command info shell +} + +package() { + cd "$srcdir/sleep-until-$pkgver" + make DESTDIR="$pkgdir" install-base install-info install-man install-shell +} + diff --git a/dist/archlinux/stable/sleep-until.install b/dist/archlinux/stable/sleep-until.install new file mode 100644 index 0000000..83a9144 --- /dev/null +++ b/dist/archlinux/stable/sleep-until.install @@ -0,0 +1,20 @@ +_file="sleep-until" + +infodir="usr/share/info" +file="${_file}.info" + + +post_install() { + [[ -x "usr/bin/install-info" ]] || return 0 + install-info -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null +} + +post_upgrade() { + post_install "$1" +} + +pre_remove() { + [[ -x "usr/bin/install-info" ]] || return 0 + install-info --delete -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null +} + |