From 675ba4a2aa5e8c26c659f37ecc9f3f09a5f2e84c Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Sun, 30 Sep 2018 16:37:33 +0000 Subject: [PATCH] MatchColumns, new recipe (#2115) --- .../matching_columns-0.1.0~git.recipe | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 haiku-games/matching-columns/matching_columns-0.1.0~git.recipe diff --git a/haiku-games/matching-columns/matching_columns-0.1.0~git.recipe b/haiku-games/matching-columns/matching_columns-0.1.0~git.recipe new file mode 100644 index 000000000..ce7fa350c --- /dev/null +++ b/haiku-games/matching-columns/matching_columns-0.1.0~git.recipe @@ -0,0 +1,46 @@ +SUMMARY="A matching game" +DESCRIPTION="A game for Haiku OS where users score points by matching the \ +columns before breaking them." +HOMEPAGE="https://github.com/spiceweasel/matching-columns" +COPYRIGHT="2017 Scott Jacovidis" +LICENSE="MIT" +REVISION="1" +srcGitRev="eac403db4a639b0893f47738896c60cb37f569c1" +SOURCE_URI="https://github.com/spiceweasel/matching-columns/archive/$srcGitRev.tar.gz" +CHECKSUM_SHA256="a042f9bc916a10332bd1475bd55af64cd71c28664afbfc333a4b57d558ad85ff" +SOURCE_FILENAME="matchingcolumns-$portVersion-$srcGitRev.tar.gz" +SOURCE_DIR="matching-columns-$srcGitRev" + +ARCHITECTURES="x86_gcc2 !x86 ?x86_64" + +PROVIDES=" + matching_columns = $portVersion + app:MatchColumns = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:make + " + +defineDebugInfoPackage matching_columns \ + $appsDir/MatchColumns + +BUILD() +{ + make $jobArgs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $appsDir + cp objects/matching-columns $appsDir/MatchColumns + addAppDeskbarSymlink $appsDir/MatchColumns +}