mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
25 lines
743 B
Bash
25 lines
743 B
Bash
# $Id: PKGBUILD 50843 2009-09-02 05:52:47Z andyrtr $
|
|
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
|
# Contributor: Hugo Doria <hugodoria@gmail.com>
|
|
# Contributor: Bjorn Martensen
|
|
|
|
pkgname=libisofs
|
|
pkgver=0.6.22
|
|
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.pykix.org/"
|
|
license=('GPL')
|
|
depends=('acl' 'zlib')
|
|
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz)
|
|
options=('!libtool')
|
|
md5sums=('e4fa4150d09b700b073e84af09c2066e')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--enable-libacl --enable-xattr --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|
|
|