# $Id: PKGBUILD 122444 2011-05-04 07:26:57Z andrea $ # Maintainer: Andrea Scarpino # Contributor: Tobias Powalowski pkgname=libzip pkgver=0.10 pkgrel=1 pkgdesc="A C library for reading, creating, and modifying zip archives" url="http://www.nih.at/libzip/index.html" license=('GPL2') arch=('i686' 'x86_64' 'mips64el') depends=('zlib') options=('!libtool') source=("http://www.nih.at/${pkgname}/${pkgname}-${pkgver}.tar.gz" 'fix-headers.patch') md5sums=('47cdfcbc08c8bea0b52fdee4bf591622' '249395bd3a426c4c4e993e9d4753e1dd') build() { cd "${srcdir}/${pkgname}-${pkgver}" patch -p1 -i "${srcdir}/fix-headers.patch" ./configure --prefix=/usr make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR=${pkgdir} install }