From bb5502aee629f95c386bcc2fe606a6ef73d32bbb Mon Sep 17 00:00:00 2001 From: Humdinger Date: Wed, 13 Jul 2016 17:24:53 +0200 Subject: [PATCH] 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. --- haiku-apps/q/q-1.1.recipe | 45 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 haiku-apps/q/q-1.1.recipe diff --git a/haiku-apps/q/q-1.1.recipe b/haiku-apps/q/q-1.1.recipe new file mode 100644 index 000000000..84ffd3c4b --- /dev/null +++ b/haiku-apps/q/q-1.1.recipe @@ -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 +}