From fce154625b9b565a34471023466efce05887648b Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Sat, 7 Dec 2013 21:09:37 +0000 Subject: [PATCH] Add BeIndexed recipe --- .../beindexed/beindexed-0.2.0_alpha.recipe | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 haiku-apps/beindexed/beindexed-0.2.0_alpha.recipe diff --git a/haiku-apps/beindexed/beindexed-0.2.0_alpha.recipe b/haiku-apps/beindexed/beindexed-0.2.0_alpha.recipe new file mode 100644 index 000000000..2ac0c14bd --- /dev/null +++ b/haiku-apps/beindexed/beindexed-0.2.0_alpha.recipe @@ -0,0 +1,67 @@ +SUMMARY="Search through your files with ease!" + +DESCRIPTION=" + BeIndexed searches all your files and builds a database with + their content. You can then search for files by content, + like on Google etc. Index files with Indexer, Find files with + Finder. + " + +HOMEPAGE="https://github.com/HaikuArchives/BeIndexed" #Or web.archive.org and eiman.tv/BeIndexed +SRC_URI="git://github.com/HaikuArchives/BeIndexed.git#4bbd3e9709d7288ffefbc215ab41a152a24a2276" + +REVISION="1" + +LICENSE="BSD (3-clause)" +COPYRIGHT="2003 Mikael Eiman" + +ARCHITECTURES="x86_gcc2 x86" + + +PROVIDES=" + beindexed = $portVersion + app:Finder = $portVersion + cmd:Indexer = $portVersion + " + +REQUIRES=" + haiku >= $haikuVersion + lib:libsqlite3 + lib:liblayout + " + +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:xres + cmd:make + cmd:mkdepend + " + +BUILD_REQUIRES=" + makefile_engine + haiku_devel >= $haikuVersion + devel:libsqlite3 + devel:liblayout + " + +USER_SETTINGS_FILES=" + data/BeIndexed directory + " + +BUILD() +{ + mkdir bin || true + make +} + +INSTALL() +{ + mkdir -p $binDir + mkdir -p $appsDir + + cp bin/Indexer $binDir + cp bin/Finder $appsDir + + addAppDeskbarSymlink $appsDir/Finder +}