# $Id$ # Maintainer: Andrea Scarpino # Contributor: Tobias Powalowski pkgname=libzip pkgver=0.11.2 pkgrel=1 pkgdesc="A C library for reading, creating, and modifying zip archives" url="http://www.nih.at/libzip/index.html" license=('BSD') arch=('i686' 'x86_64') depends=('zlib') source=("http://www.nih.at/${pkgname}/${pkgname}-${pkgver}.tar.xz") md5sums=('44c99b67dca34707b5728e5f8434fe91') build() { cd ${pkgname}-${pkgver} ./configure --prefix=/usr make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install # preserve old header path for compatibility ln -s /usr/lib/libzip/include/zipconf.h "${pkgdir}/usr/include/zipconf.h" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }