core/libisofs/PKGBUILD

26 lines
661 B
Bash
Raw Normal View History

2014-11-15 09:01:29 +08:00
pkgname=libisofs
2017-01-19 06:51:35 +08:00
pkgver=1.4.6
2014-11-15 09:01:29 +08:00
pkgrel=1
pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image"
2017-01-19 06:51:35 +08:00
arch=('x86_64')
2014-11-15 09:01:29 +08:00
url="http://libburnia-project.org"
license=('GPL')
depends=('acl' 'zlib')
source=(http://files.libburnia-project.org/releases/${pkgname}-${pkgver}.tar.gz{,.sig})
2017-01-19 06:51:35 +08:00
md5sums=('6ec515d9265fb75c48e8e73b3ea3f6c5'
2014-11-15 09:01:29 +08:00
'SKIP')
2017-01-19 06:51:35 +08:00
validpgpkeys=('44BC9FD0D688EB007C4DD029E9CBDFC0ABC0A854') # Thomas Schmitt <scdbackup@gmx.net>
2014-11-15 09:01:29 +08:00
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr \
--enable-libacl --enable-xattr --disable-static
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}