mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
* DrumCircle: update to 1.0.5 * DrumCircle: move recipe to haiku-apps * DrumCircle: disable build for secondaryArch (just in case)
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
SUMMARY="Simple sequencer with Hippie AI"
|
|
DESCRIPTION="A simple MIDI sequencer with a knack for simulating Hippie Drum Circles. \
|
|
Tweek the Tweekables and have fun!"
|
|
HOMEPAGE="https://github.com/steffenyount/DrumCircle"
|
|
COPYRIGHT="2000-2022 Steffen Yount"
|
|
LICENSE="Apache v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/steffenyount/DrumCircle/archive/refs/tags/v$portVersion.zip"
|
|
CHECKSUM_SHA256="010301b65c51645fd497593041c36d7e7776428f16f5316f759bbd9c1b1fd6f4"
|
|
SOURCE_DIR="DrumCircle-$portVersion"
|
|
|
|
ARCHITECTURES="all"
|
|
SECONDARY_ARCHITECTURES="?x86"
|
|
|
|
GLOBAL_WRITABLE_FILES="settings/drumcircle directory keep-old"
|
|
|
|
PROVIDES="
|
|
drumcircle$secondaryArchSuffix = $portVersion
|
|
app:DrumCircle = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
timgmsoundfont
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make datadir=$dataDir/drumcircle settingsdir=$settingsDir/drumcircle $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install bindir=$appsDir datadir=$dataDir/drumcircle settingsdir=$settingsDir/drumcircle
|
|
|
|
addAppDeskbarSymlink $appsDir/DrumCircle
|
|
}
|