mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 13:38:52 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
117 lines
2.5 KiB
Plaintext
117 lines
2.5 KiB
Plaintext
SUMMARY="flac - Free Lossless Audio Codec"
|
|
DESCRIPTION="
|
|
FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but \
|
|
lossless, meaning that audio is compressed in FLAC without any loss in \
|
|
quality. This is similar to how Zip works, except with FLAC you will get much \
|
|
better compression because it is designed specifically for audio, and you can \
|
|
play back compressed FLAC files in your favorite player (or your car or home \
|
|
stereo) just like you would an MP3 file.
|
|
"
|
|
HOMEPAGE="http://flac.sourceforge.net/"
|
|
SRC_URI="http://downloads.xiph.org/releases/flac/flac-$portVersion.tar.xz"
|
|
CHECKSUM_SHA256="4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c"
|
|
REVISION="1"
|
|
|
|
LICENSE="GNU LGPL v2.1
|
|
GNU GPL v2
|
|
BSD (3-clause)
|
|
"
|
|
|
|
COPYRIGHT="2000-2007 Josh Coalson"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PATCHES="flac-1.3.1.patchset"
|
|
|
|
PROVIDES="
|
|
flac$secondaryArchSuffix = $portVersion compat >= 1
|
|
lib:libFLAC$secondaryArchSuffix = 8.3.0 compat >= 8
|
|
lib:libFLAC++$secondaryArchSuffix = 6.3.0 compat >= 6
|
|
"
|
|
if [ -z "$secondaryArchSuffix" ]; then
|
|
PROVIDES="$PROVIDES
|
|
cmd:flac$secondaryArchSuffix
|
|
cmd:metaflac$secondaryArchSuffix
|
|
"
|
|
fi
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libiconv$secondaryArchSuffix
|
|
lib:libogg$secondaryArchSuffix
|
|
lib:libstdc++$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libiconv$secondaryArchSuffix
|
|
devel:libogg$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:nasm
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:libtoolize
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:gawk
|
|
cmd:perl
|
|
cmd:find
|
|
cmd:gettext
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
# remove libtool library files
|
|
rm $libDir/libFLAC.la $libDir/libFLAC++.la
|
|
|
|
if [ -n "$secondaryArchSuffix" ]; then
|
|
rm -rf $binDir $documentationDir
|
|
fi
|
|
prepareInstalledDevelLibs libFLAC libFLAC++
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
test_grabbag.sh
|
|
test_streams.sh
|
|
test_libFLAC.sh
|
|
test_wrapper.sh
|
|
test_bins.sh
|
|
test_libFLAC++.sh
|
|
test_compression.sh
|
|
test_metaflac.sh
|
|
test_flac.sh
|
|
test_seeking.sh
|
|
}
|
|
|
|
# ----- devel package -------------------------------------------------------
|
|
|
|
PROVIDES_devel="
|
|
flac${secondaryArchSuffix}_devel = $portVersion compat >= 1
|
|
devel:libFLAC$secondaryArchSuffix = 8.3.0 compat >= 8
|
|
devel:libFLAC++$secondaryArchSuffix = 6.3.0 compat >= 6
|
|
"
|
|
|
|
REQUIRES_devel="
|
|
flac$secondaryArchSuffix == $portVersion base
|
|
"
|