diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-10-28 13:06:39 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-10-28 13:06:39 +0100 |
commit | b7c357626d822c5fddc9991febc420dd16038f05 (patch) | |
tree | 986e3c19f97fd4af288e9dc8b491b80f4b8c27fe | |
parent | typo (diff) | |
download | scrotty-b7c357626d822c5fddc9991febc420dd16038f05.tar.gz scrotty-b7c357626d822c5fddc9991febc420dd16038f05.tar.bz2 scrotty-b7c357626d822c5fddc9991febc420dd16038f05.tar.xz |
dist
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | dist/archlinux/stable/.gitignore | 6 | ||||
-rw-r--r-- | dist/archlinux/stable/PKGBUILD | 27 | ||||
-rw-r--r-- | dist/archlinux/stable/scrotty.install | 20 |
3 files changed, 53 insertions, 0 deletions
diff --git a/dist/archlinux/stable/.gitignore b/dist/archlinux/stable/.gitignore new file mode 100644 index 0000000..e65850c --- /dev/null +++ b/dist/archlinux/stable/.gitignore @@ -0,0 +1,6 @@ +* +!/.git* +*~ +!/PKGBUILD +!/scrotty.install + diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD new file mode 100644 index 0000000..78b6d18 --- /dev/null +++ b/dist/archlinux/stable/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=scrotty +pkgver=1.0 +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=(af8698baccfcdb57832c2ffcbcc031635f095dc0e722de5440baf1c0ab8a9610) + + +build() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr +} + + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr install DESTDIR="$pkgdir" +} + diff --git a/dist/archlinux/stable/scrotty.install b/dist/archlinux/stable/scrotty.install new file mode 100644 index 0000000..8e40299 --- /dev/null +++ b/dist/archlinux/stable/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 +} + |