musepack: add x86{,_64} to libcuefile, libreplaygain and musepack_tools.

* Add x86 and x86_64 to ARCHITECTURES as the recipe also works fine for these.
* Add x86_gcc2 to SECONDARY_ARCHITECTURES for use in x86 (gcc4) hybrid.
* Use $portVersion instead of the current version in SOURCE_{URI,DIR}.
* Drop the "r" prefix in version (r475 → 475) and ajust SOURCE_{URI,DIR}.
This commit is contained in:
fbrosson
2016-03-08 07:21:19 +00:00
parent c4b3c50dfc
commit 0f2f511e93
5 changed files with 21 additions and 17 deletions

View File

@@ -0,0 +1,56 @@
SUMMARY="Replay Gain library from Musepack"
DESCRIPTION="libreplaygain calculates the perceived loudness of audio and \
suggests dB adjustments according to the ReplayGain standard."
HOMEPAGE="https://www.musepack.net/"
COPYRIGHT="1997-2011 Musepack Project"
LICENSE="GNU LGPL v2.1"
REVISION="1"
SOURCE_URI="http://files.musepack.net/source/libreplaygain_r$portVersion.tar.gz"
CHECKSUM_SHA256="8258bf785547ac2cda43bb195e07522f0a3682f55abe97753c974609ec232482"
SOURCE_DIR="libreplaygain_r$portVersion"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
libreplaygain$secondaryArchSuffix = $portVersion
lib:libreplaygain$secondaryArchSuffix = 1.0.0 compat = 1
"
REQUIRES="
haiku$secondaryArchSuffix
"
PROVIDES_devel="
libreplaygain${secondaryArchSuffix}_devel = $portVersion
devel:libreplaygain$secondaryArchSuffix
"
REQUIRES_devel="
libreplaygain$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:cmake
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
cmake . -DCMAKE_INSTALL_PREFIX=$prefix -DLIB_SUFFIX=$secondaryArchSubDir
make $jobArgs
}
INSTALL()
{
make install
mkdir -p $includeDir
cp -r include/replaygain $includeDir
prepareInstalledDevelLib libreplaygain
packageEntries devel $developDir
}