mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 19:50:05 +02:00
69 lines
1.7 KiB
Bash
69 lines
1.7 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="2"
|
|
SOURCE_URI="https://github.com/jiixyj/libebur128/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="baa7fc293a3d4651e244d8022ad03ab797ca3c2ad8442c43199afe8059faa613"
|
|
SOURCE_FILENAME="libebur128-$portVersion.tar.gz"
|
|
PATCHES="libebur128-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
libVersion="$portVersion"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
|
|
|
PROVIDES="
|
|
libebur128$secondaryArchSuffix = $portVersion
|
|
lib:libebur128$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
# lib:libspeexdsp$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libebur128${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libebur128$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
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()
|
|
{
|
|
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release \
|
|
-DENABLE_INTERNAL_QUEUE_H=1 \
|
|
-DCMAKE_INSTALL_PREFIX:PATH="$prefix" \
|
|
-DCMAKE_INSTALL_LIBDIR:PATH="$libDir" \
|
|
-DCMAKE_INSTALL_INCLUDEDIR:PATH="$includeDir"
|
|
make -C build $jobArgs VERBOSE=1
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make -C build install
|
|
|
|
prepareInstalledDevelLib libebur128
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|