mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
SUMMARY="A Soft-synthesizer with tracker"
|
|
DESCRIPTION="Sawteeth is a soft-synth (with tracker) for BeOS and Haiku, meant \
|
|
to either create cool synth sounds to use in Cubase and such, or cute \
|
|
chip-tunes. It uses no samples but only generated waveforms."
|
|
HOMEPAGE="https://github.com/pulkomandy/Sawteeth/"
|
|
COPYRIGHT="2001 Jonas Norberg"
|
|
LICENSE="MIT"
|
|
REVISION="4"
|
|
SOURCE_URI="https://github.com/pulkomandy/Sawteeth/archive/f6fa08f34d.tar.gz"
|
|
CHECKSUM_SHA256="a28373671c2d7214ad88dbc77d9bb58b9ae27d1b26e5f1049857eadcd0bd03e2"
|
|
SOURCE_DIR="Sawteeth-f6fa08f34d7e6b8f04df7280bf6f4d4fc761fa04"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
sawteeth = $portVersion
|
|
app:sawteeth = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:cmake
|
|
cmd:gcc
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cmake .
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
SAWTEETH_DIR=${appsDir}/Sawteeth
|
|
mkdir -p ${SAWTEETH_DIR}/sounds
|
|
mkdir -p ${SAWTEETH_DIR}/songs
|
|
mkdir -p ${SAWTEETH_DIR}/lib
|
|
cp Sawteeth ${SAWTEETH_DIR}/Sawteeth
|
|
cp -r sounds ${SAWTEETH_DIR}
|
|
cp -r songs ${SAWTEETH_DIR}
|
|
cp -r lib/headers lib/libST.so ${SAWTEETH_DIR}/lib/
|
|
addAppDeskbarSymlink ${SAWTEETH_DIR}/Sawteeth
|
|
}
|