From 1c4fc5fad925e88009fa990468fb1eb6003d3d97 Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Fri, 19 Jul 2019 11:26:34 +0200 Subject: [PATCH] 8Dock: new recipe (#4019) --- haiku-apps/8dock/8dock-0.9.5~git.recipe | 48 +++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 haiku-apps/8dock/8dock-0.9.5~git.recipe diff --git a/haiku-apps/8dock/8dock-0.9.5~git.recipe b/haiku-apps/8dock/8dock-0.9.5~git.recipe new file mode 100644 index 000000000..34621ecfc --- /dev/null +++ b/haiku-apps/8dock/8dock-0.9.5~git.recipe @@ -0,0 +1,48 @@ +SUMMARY="App and file launcher" +DESCRIPTION="Drag icons into 8Dock. Double-click to launch them." +HOMEPAGE="http://www.vortex.is/~jonr/Be/apps/" +COPYRIGHT="1999-2002 Michael Pfeiffe + 2017-2019 HaikuArchives Team" +LICENSE="MIT" +REVISION="1" +srcGitRev="88b4f0b03aa3018c3a13e9cd02ed40933bfcb26d" +SOURCE_URI="https://github.com/HaikuArchives/8Dock/archive/$srcGitRev.tar.gz" +CHECKSUM_SHA256="2536bb953b446f52d973a1896c123c33521f6b52014473de2cdb104f72196d78" +SOURCE_FILENAME="8Dock-$portVersion-$srcGitRev.tar.gz" +SOURCE_DIR="8Dock-$srcGitRev/src" + +ARCHITECTURES="x86_gcc2 ?x86 x86_64" + +PROVIDES=" + 8dock = $portVersion + app:8Dock = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:make + cmd:gcc + " + +BUILD() +{ + make $jobArgs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $appsDir + cp -a objects/8Dock $appsDir + addAppDeskbarSymlink $appsDir/8Dock +} + +TEST() +{ + make check +}