diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/libpaper/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/libpaper/PKGBUILD')
-rw-r--r-- | community/libpaper/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/libpaper/PKGBUILD b/community/libpaper/PKGBUILD new file mode 100644 index 000000000..5b8ccc1e7 --- /dev/null +++ b/community/libpaper/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 90780 2013-05-13 21:25:37Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Mateusz Herych <heniekk@gmail.com> +# Contributor: royrocks <royrocks13@gmail.com> + +pkgname=libpaper +pkgver=1.1.24 +pkgrel=5 +pkgdesc='Library for handling paper characteristics' +arch=('x86_64' 'i686') +url='http://packages.debian.org/unstable/source/libpaper' +license=('GPL') +depends=('sh') +options=('!libtool') +source=("http://ftp.de.debian.org/debian/pool/main/libp/$pkgname/${pkgname}_$pkgver+nmu2.tar.gz") +sha256sums=('c5bdd6d9dff179699160675dbb61651d9b3158f6da27558fdaba00e7c427ba96') + +build() { + cd "$srcdir/$pkgname-$pkgver+nmu2" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --sbindir=/usr/bin + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver+nmu2" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |