blob: fbc914bc58137aaa7e404e36cd5735ebfb191686 (
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
|
#!/bin/sh
NAME="libisofs"
DESC="Library to pack up hard disk files and directories into a ISO 9660 disk image"
MAKEDEPS=" acl zlib"
PKG_VER=1.5.4
SOURCE="https://files.libburnia-project.org/releases/libisofs-$PKG_VER.tar.gz"
build() {
./configure \
--prefix=/usr \
--enable-libacl \
--enable-xattr \
--disable-static
make
}
check() {
make check
}
package() {
make DESTDIR="$PKG_DEST" install
}
|