21822e73d7
==> PASV ... couldn't connect to 127.0.1.1 port 62618: Connection refused
23 lines
654 B
Plaintext
23 lines
654 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.2
|
|
release=1
|
|
source=(http://crux.ster.zone/downloads/$name/$name-$version.tar.bz2)
|
|
#source=(ftp://ftp.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2) # PASV ... couldn't connect to 127.0.1.1. something is wrong with this ftp /dns, works with curl but not wget
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-bdjava
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|