diff options
Diffstat (limited to 'extra/zziplib/PKGBUILD')
-rw-r--r-- | extra/zziplib/PKGBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/extra/zziplib/PKGBUILD b/extra/zziplib/PKGBUILD index 69736ea64..f5376730e 100644 --- a/extra/zziplib/PKGBUILD +++ b/extra/zziplib/PKGBUILD @@ -1,30 +1,29 @@ -# $Id: PKGBUILD 153578 2012-03-16 06:20:51Z eric $ +# $Id: PKGBUILD 197447 2013-10-26 06:24:44Z eric $ # Maintainer: Rémy Oudompheng <remy@archlinux.org> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> # Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com> pkgname=zziplib pkgver=0.13.62 -pkgrel=1.1 +pkgrel=2 pkgdesc="A lightweight library that offers the ability to easily extract data from files archived in a single zip file" arch=('i686' 'x86_64' 'mips64el') url="http://zziplib.sourceforge.net" license=('LGPL' 'MPL') depends=('zlib') makedepends=('python2') -options=('!libtool') source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2) md5sums=('5fe874946390f939ee8f4abe9624b96c') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd ${pkgname}-${pkgver} export PYTHON=/usr/bin/python2 ./configure --prefix=/usr make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install #fix permission |