forked from ports/contrib
23 lines
495 B
Plaintext
23 lines
495 B
Plaintext
# Description: Blu-Ray access library.
|
|
# URL: http://www.videolan.org/developers/libbluray.html
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
|
# Depends on: fontconfig libxml2
|
|
|
|
name=libbluray
|
|
version=0.9.1
|
|
release=1
|
|
source=(ftp://ftp.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-bdjava
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|