view multimedia/libbluray/libbluray.sh @ 606:25cecc6dca48

vanilla: use POSIX shell and busybox tar
author David Demelier <markand@malikania.fr>
date Thu, 18 Jul 2019 07:26:43 +0200
parents bad483aace64
children 59a2fa6992bc
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="LGPLv21+"
PKGSUMMARY="bluray access library"
PKGDOWNLOAD="https://download.videolan.org/pub/videolan/$PKGNAME/$PKGVERSION/$PKGNAME-$PKGVERSION.tar.bz2"
PKGOPTIONS="FONTCONFIG FREETYPE XML"

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

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

if [ "$FREETYPE" = "yes" ]; then
	PKGDEPENDS="fonts/freetype $PKGDEPENDS"
	with_freetype="--with-freetype"
else
	with_freetype="--without-freetype"
fi

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

build()
{
	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= \
		--disable-bdjava-jar \
		--enable-shared \
		--disable-static \
		$with_fontconfig \
		$with_freetype \
		$with_xml
	make
	make install DESTDIR=$DESTDIR
	rm -f $DESTDIR/lib/libbluray.la

	cd ..
	rm -rf $PKGNAME-$PKGVERSION
}