Files
haikuports/haiku-apps/beae/beae-1.2.recipe
Humdinger a38db25c39 Changes in SUMMARY, DESCRIPTION and whitespace.
Removed the full-stop and repeating package name in SUMMARY.
Removed hard line breaks, broke up some very long paragraphs and
use bullet lists where possible.
All done by browsing through HaikuDepot. There may be (many) more left
in the whole haikuports repo...

Included 10 extended desriptions done by soyoye14 for GCI 2014
(https://www.google-melange.com/gci/task/view/google/gci2014/5240373098053632)

Removed/insert whitespace where it seems to be the custom in recipes.
Sometimes rearranged elements of a recipe (moving license and copyright
up, for example).
2015-01-12 19:23:51 +01:00

43 lines
789 B
Plaintext

SUMMARY="A well featured audio editor"
DESCRIPTION="BeAE is an audio editor 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
}