Files
haikuports/haiku-apps/waveview/waveview-1.0.recipe
Chris Roberts 8a30e59744 Overhaul the haiku-apps directory
* Fixed PROVIDES/*REQUIRES entries
* Added vcs hashes to the ports needing it in the SRC_URI
* Made single executable apps install to the top level $appsDir
* Added patches for gcc4 versions of most apps
* Added patches for apps that couldn't build on any arch
   ( even though they were marked as working :( )
* Other misc fixes that I've forgotten already because I'm sick of
  looking at this directory
2013-12-02 20:48:05 -07:00

54 lines
865 B
Plaintext

SUMMARY="A simple audio wave viewer"
DESCRIPTION="simple audio wave viewer"
HOMEPAGE="https://github.com/aldeck/waveview"
LICENSE="MIT"
COPYRIGHT="2011 Alexandre Deckner (alex@zappotek.com)"
SRC_URI="git+https://github.com/aldeck/waveview#fce091e76a"
REVISION="2"
ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
waveview = $portVersion
app:waveview = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
lib:libpcre
lib:libpcreposix
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
devel:libpcre
devel:libpcreposix
"
BUILD_PREREQUIRES="
makefile_engine
cmd:bison
cmd:flex
cmd:gcc
cmd:jam
cmd:ld
cmd:make
cmd:mkdepend
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD()
{
make OBJ_DIR=objects \
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
mkdir -p $appsDir
cp -a objects/WaveView $appsDir
addAppDeskbarSymlink $appsDir/WaveView
}