Files
haikuports/haiku-apps/beae/beae-1.2.recipe
Oliver Tappe 52b344b97b Drop references to $haikuVersion.
* 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.
2014-12-14 23:08:52 +01:00

46 lines
814 B
Plaintext

SUMMARY="Well featured audio editor for Haiku."
DESCRIPTION="BeAE is an audio editor for Haiku, with features like silencing, \
fading in/out, analyzing, etc."
HOMEPAGE="https://github.com/HaikuArchives/BeAE"
SRC_URI="git+https://github.com/HaikuArchives/BeAE.git#7b8ec80082"
REVISION="2"
COPYRIGHT="2003 Xentronix"
LICENSE="BSD (3-clause)"
ARCHITECTURES="x86_gcc2 !x86 ?x86_64"
SECONDARY_ARCHITECTURES="!x86"
PROVIDES="
beae = $portVersion
app:BeAE = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:make
cmd:cmake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
"
BUILD()
{
cmake .
make
}
INSTALL()
{
mkdir -p $appsDir/BeAE
cd build
mv * $appsDir/BeAE
addAppDeskbarSymlink $appsDir/BeAE/BeAE
}