blob: 8c545258879fccaceb4eebf848c21ef24e481074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libisofs
pkgver=1.3.6
pkgrel=0
pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image"
url="http://libburnia-project.org/"
arch="all"
license="GPL"
depends=""
makedepends="acl-dev zlib-dev libiconv-dev"
subpackages="$pkgname-dev"
source="http://files.libburnia-project.org/releases/libisofs-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-libacl \
--enable-xattr \
--disable-static \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la
}
md5sums="11c2df00bf02015c28606a37ee839367 libisofs-1.3.6.tar.gz"
sha256sums="9ffff0fa1827ac3c246783306fe98035ff8e4e251b5191984611a351f358350c libisofs-1.3.6.tar.gz"
sha512sums="2e95f2da7ca9bb960f6dfbdf077717e306e95195aa0e71a4b3b633105da213cb58fb996478afb69c3c0ed09a316cfe4062227a40c1c41a9a828e01b4395c7cb0 libisofs-1.3.6.tar.gz"
|