From f0e2c26268271cb0f70a39266ccbcc65dcd3bd8f Mon Sep 17 00:00:00 2001 From: Owen Date: Fri, 5 Jan 2018 19:23:33 -0800 Subject: [PATCH] BeNormal: create recipe (#2071) --- haiku-apps/benormal/benormal-1.0.recipe | 43 +++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 haiku-apps/benormal/benormal-1.0.recipe diff --git a/haiku-apps/benormal/benormal-1.0.recipe b/haiku-apps/benormal/benormal-1.0.recipe new file mode 100644 index 000000000..89f5504d2 --- /dev/null +++ b/haiku-apps/benormal/benormal-1.0.recipe @@ -0,0 +1,43 @@ +SUMMARY="An application that normalizes WAV files" +DESCRIPTION="BeNormal, a command-line program designed to normalize WAV files." +APP="BeNormal" +HOMEPAGE="https://github.com/HaikuArchives/$APP" +COPYRIGHT="2000 David Burnett" +LICENSE="GNU GPL v2" +REVISION="1" +srcGitRev="8185622b237d790e589d92dc5ddf7bf58f5ccc2c" +SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz" +CHECKSUM_SHA256="1a199db29953dffbd15b61e614df5a5775842c4056e8d3f282ecbeb919f7bf8f" +SOURCE_FILENAME="$APP-$portVersion-$srcGitRev.tar.gz" +SOURCE_DIR="$APP-$srcGitRev" + +ARCHITECTURES="x86_gcc2 ?x86_64" + +PROVIDES=" + benormal = $portVersion + cmd:$APP = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:make + " + +BUILD() +{ + make OBJ_DIR=objects $jobArgs +} + +INSTALL() +{ + install -d $binDir $docDir + install objects/$APP $binDir + install Readme.txt $docDir +}