blob: 422cb2d3075eb05f5c653b1ad441361ac04da260 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Bibliothèque d'accés Blu-ray
# URL: http://www.videolan.org/developers/libbluray.html
# Maintainer: Andrew Cook <ariscop@gmail.com>
# Packager: fanch
# Depends on: libxml2
# Run on:
name=libbluray
version=0.2.1
release=1
source=(ftp://ftp.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|