Add recipe for Q

Q, the interactive analogue synth sequencer.
There's no copyright year and license info to be found.
On the net I found the last release was 2001, so I took that.
As license I only found "Freeware", so it's MIT for now, until
other information comes to light.
This commit is contained in:
Humdinger
2016-07-13 17:24:53 +02:00
parent 87bc25ad5d
commit bb5502aee6

45
haiku-apps/q/q-1.1.recipe Normal file
View File

@@ -0,0 +1,45 @@
SUMMARY="An interactive 'analogue' synth sequencer"
DESCRIPTION="Q is a simple 'analogue' synth that can be controlled via MIDI. \
You don't necessarily need any MIDI equipment, an installed soundfont is \
enough to have some fun. Just twiddle those knobs..."
HOMEPAGE="https://github.com/HaikuArchives/Q"
COPYRIGHT="2001 Masaaki Tani, Dr. Hartmut Reh"
LICENSE="MIT"
REVISION="1"
sourceHash="b17751e7256ee51531802dfd1882598f5127b463"
SOURCE_URI="https://github.com/HaikuArchives/q/archive/$sourceHash.tar.gz"
CHECKSUM_SHA256="2e311b3e036cfe2913454a9a9b6fdbb1bf1d28761edb11e7907bdb436c964501"
SOURCE_DIR="Q-$sourceHash"
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
PROVIDES="
Q = $portVersion
app:Q = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
cd src
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cd src
cp -af objects/Q $appsDir
addAppDeskbarSymlink $appsDir/Q
}