Files
haikuports/media-libs/libbdplus/libbdplus-0.1.2.recipe
Jerome Duval fc0936b040 Bump revisions for x86_64 rebuild after time_t change.
* a few apps needed build fix for time_t.
* disable compatibility packages for x86_64.
2017-06-27 15:46:25 +02:00

70 lines
1.7 KiB
Bash

SUMMARY="Library to handle the BD+ protection scheme on Blu-ray discs"
DESCRIPTION="This library is written for the purpose of playing Blu-ray \
movies. It is intended for software that want to support Blu-ray playback \
(such as VLC and MPlayer)."
HOMEPAGE="https://www.videolan.org/developers/libbdplus.html"
COPYRIGHT="2011-2015 VideoLAN"
LICENSE="GNU LGPL v2.1"
REVISION="4"
SOURCE_URI="https://download.videolan.org/pub/videolan/libbdplus/$portVersion/libbdplus-$portVersion.tar.bz2"
CHECKSUM_SHA256="a631cae3cd34bf054db040b64edbfc8430936e762eb433b1789358ac3d3dc80a"
PATCHES="libbdplus-0.1.2.patchset"
ARCHITECTURES="!x86_gcc2 x86 x86_64 ?arm ?ppc"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
libbdplus$secondaryArchSuffix = $portVersion compat >= 0
lib:libbdplus$secondaryArchSuffix = 0.0.1 compat >= 0
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libgcrypt$secondaryArchSuffix
lib:libgpg_error$secondaryArchSuffix
"
PROVIDES_devel="
libbdplus${secondaryArchSuffix}_devel = $portVersion compat >= 0
devel:libbdplus$secondaryArchSuffix = 0.0.1 compat >= 0
"
REQUIRES_devel="
libbdplus$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libgcrypt$secondaryArchSuffix
devel:libgpg_error$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
cmd:pkg_config$secondaryArchSuffix
"
BUILD()
{
autoreconf -fi
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
rm $libDir/libbdplus.la
prepareInstalledDevelLibs libbdplus
fixPkgconfig
# devel package
packageEntries devel \
$developDir
}