# $Id: PKGBUILD 192278 2013-08-09 14:19:12Z andyrtr $ # Maintainer: AndyRTR # Contributor: Hugo Doria # Contributor: Bjorn Martensen pkgname=libisofs pkgver=1.3.2 pkgrel=1 pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image" arch=('i686' 'x86_64') url="http://libburnia-project.org" license=('GPL') depends=('acl' 'zlib') source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz{,.sig}) options=('!libtool') md5sums=('3dfdaaf964ed7a779bc23de50c5f2175' 'SKIP') build() { cd ${pkgname}-${pkgver} ./configure --prefix=/usr \ --enable-libacl --enable-xattr --disable-static make } package() { cd ${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }