mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
6db8bc506e
gparted, libbluray, vte3
21 lines
474 B
Plaintext
21 lines
474 B
Plaintext
# Description: Blu-Ray access library.
|
|
# URL: https://www.videolan.org/developers/libbluray.html
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: fontconfig libxml2
|
|
|
|
name=libbluray
|
|
version=1.3.4
|
|
release=1
|
|
source=(https://download.videolan.org/pub/videolan/libbluray/$version/libbluray-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
$([ -e /usr/bin/ant ] || echo --disable-bdjava-jar) \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|