diff options
Diffstat (limited to 'community/libpaper/PKGBUILD')
-rw-r--r-- | community/libpaper/PKGBUILD | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/community/libpaper/PKGBUILD b/community/libpaper/PKGBUILD index 113fe83f1..0e222d90c 100644 --- a/community/libpaper/PKGBUILD +++ b/community/libpaper/PKGBUILD @@ -1,29 +1,29 @@ -# $Id: PKGBUILD 79303 2012-11-02 14:41:55Z arodseth $ +# $Id: PKGBUILD 83644 2013-02-04 09:47:51Z 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=3 +pkgrel=4 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 \ - --mandir=$pkgdir/usr/share/man \ - --sysconfdir=/etc + cd "$srcdir/$pkgname-$pkgver+nmu2" + ./configure --prefix=/usr --sysconfdir=/etc make } package() { - cd $srcdir/$pkgname-$pkgver+nmu2 - make prefix=$pkgdir/usr install + cd "$srcdir/$pkgname-$pkgver+nmu2" + make prefix="$pkgdir/usr" install } # vim:set ts=2 sw=2 et: |