mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
The freealut recipe now compiles and creates hpkgs and the original source URL was a dead link, so the mirror from ftp.debian.org was used instead. Update freealut recipe missing keys Updated freealut recipe to match guidelines.
51 lines
1.2 KiB
Bash
51 lines
1.2 KiB
Bash
DESCRIPTION="FreeALUT - a free implementation of OpenAL's ALUT standard."
|
|
HOMEPAGE="http://connect.creativelabs.com/openal"
|
|
SOURCE_URI="http://ftp.de.debian.org/debian/pool/main/f/freealut/freealut_1.1.0.orig.tar.gz"
|
|
REVISION="1"
|
|
SUMMARY="Implementation of the OpenAL Utility Toolkit"
|
|
CHECKSUM_SHA256="60d1ea8779471bb851b89b49ce44eecb78e46265be1a6e9320a28b100c8df44f"
|
|
SOURCE_DIR="freealut-1.1.0"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
PROVIDES="
|
|
freealut$secondaryArchSuffix = $portVersion compat >= 0
|
|
lib:freealut$secondaryArchSuffix = 1.1.0 compat >= 0
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libopenal$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libopenal$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:doxygen
|
|
cmd:find
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
cmd:ranlib
|
|
"
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
./autogen.sh
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="2005-2006 Creative Technology Ltd."
|