1SUMMARY="A full text indexing and search tool"
2DESCRIPTION="Beacon is a full text indexing and search tool for Haiku"
3HOMEPAGE="https://github.com/HaikuArchives/Beacon/"
4COPYRIGHT="2009 Haiku Inc"
5LICENSE="MIT"
6REVISION="2"
7srcGitRev="6e6e614582b0c452805d7b8c0701e77486cd9d4b"
8SOURCE_URI="https://github.com/HaikuArchives/Beacon/archive/$srcGitRev.tar.gz"
9CHECKSUM_SHA256="20e11fdb16dce80413d0ec7e376b73c4a842dda1756f59d040c6abb87261be3d"
10SOURCE_DIR="Beacon-$srcGitRev"
11
12ARCHITECTURES="?all !x86_gcc2"
13
14PROVIDES="
15	beacon = $portVersion
16	cmd:index_server
17	cmd:indexutil
18	cmd:searchapp
19	"
20REQUIRES="
21	haiku
22	lib:libclucene_core
23	"
24
25BUILD_REQUIRES="
26	haiku_devel
27	devel:libclucene_core
28	"
29BUILD_PREREQUIRES="
30	cmd:gcc
31	cmd:jam
32	"
33
34BUILD()
35{
36	jam
37}
38
39INSTALL()
40{
41	mkdir $binDir $appsDir
42	cp src/index_server/index_server $binDir
43	cp src/indexutil/indexutil $binDir
44	cp src/searchapp/searchapp $appsDir/Beacon
45}
46