blob: 9d8c1c2d6277e6b8128c93299db561e9b295d5ca (
plain)
1 # Description: Blu-Ray access library.
2 # URL: http://www.videolan.org/developers/libbluray.html
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: fontconfig libxml2
5 # Optional: ant
6
7 name=libbluray
8 version=1.1.2
9 release=1
10 source=(ftp://ftp.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2)
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 $([ -e /usr/bin/ant ] || echo --disable-bdjava-jar)
17
18 make
19 make DESTDIR=$PKG install
20 }
|