From 6415d80c9e66a17f091a86ceee1eb086c546d753 Mon Sep 17 00:00:00 2001 From: Bach Nguyen Date: Thu, 21 Dec 2017 04:35:43 +0000 Subject: [PATCH] media-sound/Sinus, a sine wave generator: new recipe (#1923) --- media-sound/sinus/sinus-0.1.3.recipe | 41 ++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 media-sound/sinus/sinus-0.1.3.recipe diff --git a/media-sound/sinus/sinus-0.1.3.recipe b/media-sound/sinus/sinus-0.1.3.recipe new file mode 100644 index 000000000..d15724553 --- /dev/null +++ b/media-sound/sinus/sinus-0.1.3.recipe @@ -0,0 +1,41 @@ +SUMMARY="Command line tool that creates sine waves" +DESCRIPTION="Sinus is a little command line tool that creates sine waves, \ +plays them back, and writes then to (.wav) files. It takes a list of frequencies \ +and durations then creates a wave of those frequencies and durations." +HOMEPAGE="https://ftp.gwdg.de/pub/linux/misc/blinux/" +COPYRIGHT="1998 Angus Mackay" +LICENSE="Public Domain" +REVISION="1" +SOURCE_URI="https://ftp.gwdg.de/pub/linux/misc/blinux/sinus-$portVersion.tar.gz" +CHECKSUM_SHA256="b81961bbc9854efaf3973701814aefca0fa5ec142c3dd1facac5f4eb08816d35" + +ARCHITECTURES="x86_gcc2 !x86_64" + +PROVIDES=" + sinus = $portVersion + cmd:sinus = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + cmd:cc + cmd:make + " + +BUILD() +{ + runConfigure --omit-dirs "docDir dataRootDir" ./configure + make $jobArgs +} + +INSTALL() +{ + install -d $docDir + make install + install -t $docDir README +}