blob: e8a28b2f8b170ee79628f36c1780f065bc8fa2b1 (
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
|
# Description: Librairie pour creer des systemes de fichiers ISO-9660
# URL: http://libburnia.pykix.org/
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on: libburn
# Run on: libburn
name=libisofs
version=1.0.2
release=1
source=(http://files.libburnia-project.org/releases/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libdir=/usr/lib \
--mandir=/usr/share/man \
--localstatedir=/var \
--sysconfdir=/etc \
--disable-static
make
make DESTDIR=$PKG install
}
|