view multimedia/libbluray/libbluray.sh @ 1219:337f950c30f5

misc: use SPDX licenses
author David Demelier <markand@malikania.fr>
date Thu, 30 Sep 2021 09:05:45 +0200
parents 57dc83a39b13
children 4ccc42bf0284
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=libbluray
PKGVERSION=1.1.1
PKGREVISION=1
PKGLICENSE="LGPL-2.1-or-later"
PKGSUMMARY="bluray access library"
PKGDOWNLOAD="https://download.videolan.org/pub/videolan/$PKGNAME/$PKGVERSION/$PKGNAME-$PKGVERSION.tar.bz2"
PKGOPTIONS="FONTCONFIG TTF XML"

: ${CHOST:=$(uname -m)-linux-musl}
: ${CBUILD:=$(uname -m)-linux-musl}
: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${LDFLAGS:=}
: ${LIBS:=}
: ${FONTCONFIG:=yes}
: ${TTF:=yes}
: ${XML:=yes}

if [ "$FONTCONFIG" = "yes" ]; then
	PKGDEPENDS="fontconfig $PKGDEPENDS"
	with_fontconfig="--with-fontconfig"
else
	with_fontconfig="--without-fontconfig"
fi

if [ "$TTF" = "yes" ]; then
	PKGDEPENDS="freetype $PKGDEPENDS"
	with_ttf="--with-freetype"
else
	with_ttf="--without-freetype"
fi

if [ "$XML" = "yes" ]; then
	PKGDEPENDS="libxml2 $PKGDEPENDS"
	with_xml="--with-libxml2"
else
	with_xml="--without-libxml2"
fi

rm -rf $PKGNAME-$PKGVERSION
tar xvf $PKGNAME-$PKGVERSION.tar.bz2
cd $PKGNAME-$PKGVERSION

# TODO: re-enable bdjava-jar once ant is there.
CC="$CC" \
CFLAGS="$CFLAGS" \
LDFLAGS="$LDFLAGS" \
LIBS="$LIBS" \
./configure \
	--build=$CBUILD \
	--host=$CHOST \
	--prefix=/usr \
	--disable-bdjava-jar \
	--enable-shared \
	$with_fontconfig \
	$with_ttf \
	$with_xml
make
make install DESTDIR=$DESTDIR
find $DESTDIR -type f -name "*.la" -delete

cd ..
rm -rf $PKGNAME-$PKGVERSION