0
0
Fork 0
haikuports/haiku-apps/beindexed/beindexed-0.2.0_alpha.recipe

58 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2013-12-07 21:09:37 +00:00
SUMMARY="Search through your files with ease!"
DESCRIPTION="
2014-01-02 21:40:57 +00:00
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.
"
2018-08-14 07:17:46 +00:00
HOMEPAGE="https://github.com/HaikuArchives/BeIndexed"
2013-12-07 21:09:37 +00:00
COPYRIGHT="2003 Mikael Eiman"
2018-08-14 07:17:46 +00:00
LICENSE="BSD (3-clause)"
2019-07-03 19:29:30 +00:00
REVISION="3"
2018-09-17 06:54:59 +00:00
srcGitRev="4bbd3e9709d7288ffefbc215ab41a152a24a2276"
SOURCE_URI="https://github.com/HaikuArchives/BeIndexed/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="b9bb08ec87e96169708309e26ef6ee59e1c30c2f46a06c6a7427d3e8d4d65c00"
SOURCE_DIR="BeIndexed-$srcGitRev"
2019-07-03 19:29:30 +00:00
PATCHES="beindexed-$portVersion.patchset"
2013-12-07 21:09:37 +00:00
ARCHITECTURES="all"
2013-12-07 21:09:37 +00:00
PROVIDES="
beindexed = $portVersion
app:Finder = $portVersion
cmd:Indexer = $portVersion
"
REQUIRES="
haiku
2013-12-07 21:09:37 +00:00
lib:liblayout
2018-08-14 07:17:46 +00:00
lib:libsqlite3
2013-12-07 21:09:37 +00:00
"
BUILD_REQUIRES="
haiku_devel
2013-12-07 21:09:37 +00:00
devel:liblayout
2018-08-14 07:17:46 +00:00
devel:libsqlite3
2013-12-07 21:09:37 +00:00
"
2018-08-14 07:17:46 +00:00
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
cmd:xres
2013-12-07 21:09:37 +00:00
"
BUILD()
{
mkdir bin || true
make
}
INSTALL()
{
mkdir -p $binDir
mkdir -p $appsDir
2013-12-07 21:09:37 +00:00
cp bin/Indexer $binDir
cp bin/Finder $appsDir
2013-12-07 21:09:37 +00:00
addAppDeskbarSymlink $appsDir/Finder
}