Files
haikuports/media-libs/libebur128/libebur128-1.2.2.recipe
2017-09-08 17:23:33 +02:00

68 lines
1.6 KiB
Bash

SUMMARY="A library implementing the EBU R128 loudness standard"
DESCRIPTION="libebur128 is a library that implements the EBU R 128 standard for loudness \
normalisation. It supports all samplerates by recalculation of the filter coefficients."
HOMEPAGE="https://github.com/jiixyj/libebur128"
COPYRIGHT="2011 Jan Kokemüller"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/jiixyj/libebur128/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="1d0d7e855da04010a2432e11fbc596502caf11b61c3b571ccbcb10095fe44b43"
SOURCE_FILENAME="$portVersionedName.tar.gz"
PATCHES="libebur128-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
libebur128$secondaryArchSuffix = $portVersion
lib:libebur128$secondaryArchSuffix = 1.1.0 compat >= 1
"
REQUIRES="
haiku$secondaryArchSuffix
"
# lib:libspeexdsp$secondaryArchSuffix
PROVIDES_devel="
libebur128${secondaryArchSuffix}_devel = $portVersion
devel:libebur128$secondaryArchSuffix = 1.1.0 compat >= 1
"
REQUIRES_devel="
libebur128$secondaryArchSuffix == $portVersion
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
# devel:libspeexdsp$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:cmake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
cmd:sed
"
BUILD()
{
rm -Rf build
mkdir build
cd build
cmake -DENABLE_INTERNAL_QUEUE_H=1 -DCMAKE_INSTALL_PREFIX:PATH=$prefix ..
make $jobArgs VERBOSE=1
}
INSTALL()
{
cd build
make install
mkdir -p $(dirname $includeDir)
mv $prefix/include $includeDir
prepareInstalledDevelLib libebur128
# devel package
packageEntries devel \
$developDir
}