diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-08 12:56:38 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-08 12:56:38 +0100 |
commit | 92951c009474b12c1de496ecb6c2b27a6d47a9a5 (patch) | |
tree | 9067a4d0a575f86a5927838c0d57ba8e8d2e8e4f /scrotty | |
parent | add newsd (diff) | |
download | aur-packages-92951c009474b12c1de496ecb6c2b27a6d47a9a5.tar.gz aur-packages-92951c009474b12c1de496ecb6c2b27a6d47a9a5.tar.bz2 aur-packages-92951c009474b12c1de496ecb6c2b27a6d47a9a5.tar.xz |
add scrotty
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'scrotty')
-rw-r--r-- | scrotty/PKGBUILD | 27 | ||||
-rw-r--r-- | scrotty/scrotty.install | 20 |
2 files changed, 47 insertions, 0 deletions
diff --git a/scrotty/PKGBUILD b/scrotty/PKGBUILD new file mode 100644 index 0000000..53c42be --- /dev/null +++ b/scrotty/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=scrotty +pkgver=1.0.2 +pkgrel=1 +pkgdesc="Screenshot program for Linux's TTY" +arch=(i686 x86_64) +url="https://github.com/maandree/scrotty" +license=('GPL3' 'custom:GFDL1.3') +depends=(linux glibc imagemagick) +makedepends=(make coreutils glibc gcc texinfo) +install=scrotty.install +source=($url/archive/$pkgver.tar.gz) +sha256sums=(b8e6e157b795807ca44ab0e6ac178d0f3071c0e8df513dc50dabb1bafb877514) + + +build() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr +} + + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr install DESTDIR="$pkgdir" +} + diff --git a/scrotty/scrotty.install b/scrotty/scrotty.install new file mode 100644 index 0000000..8e40299 --- /dev/null +++ b/scrotty/scrotty.install @@ -0,0 +1,20 @@ +_file="scrotty" + +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 +} + |