mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* haiku-apps/genesis_commander: mark as tested. * haiku-apps/timetracker: add patch for gcc5 builds only. * haiku-apps/toner: add patch, bump revision. * haiku-apps/wakeup: add patch, bump revision. * haiku-games/bebattle: add patch, bump revision.
44 lines
847 B
Bash
44 lines
847 B
Bash
SUMMARY="A tone generator"
|
|
DESCRIPTION="Toner, a tone generator for aligning levels in your playback \
|
|
system."
|
|
HOMEPAGE="https://github.com/HaikuArchives/Toner"
|
|
COPYRIGHT="2001 Ben Loftis"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
COMMIT="eb78098c88b0d1eacb97a4e0085eff6bfd0a7f0b"
|
|
SOURCE_URI="https://github.com/HaikuArchives/Toner/archive/$COMMIT.tar.gz"
|
|
CHECKSUM_SHA256="9a3edf2de7436a33ce7706ad1347cbd3393e906c735ca097b42ded584e3e8a5f"
|
|
SOURCE_DIR="Toner-$COMMIT"
|
|
PATCHES="toner-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 x86_64"
|
|
|
|
PROVIDES="
|
|
toner = $portVersion
|
|
app:Toner = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp objects/Toner $appsDir
|
|
addAppDeskbarSymlink $appsDir/Toner
|
|
}
|