blob: 1ae893cb454c7499a3eb0d4a275f7cdab4858c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Librairie d'accès aux disques optiques
# URL: http://icculus.org/burn/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=libburn
version=0.7.4
release=1
source=(http://files.libburnia-project.org/releases/$name-$version.pl00.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
}
|