1SUMMARY="An IDE for rapid development of apps"
2DESCRIPTION="BeOS Rapid Integrated Environment (or BRIE for short) is an IDE \
3for rapid development of BeOS / OBOS / Zeta applications. All code is \
4generated in C/C++ using the BeOS API plus a few extensions."
5HOMEPAGE="https://github.com/HaikuArchives/Brie"
6COPYRIGHT="2002-2004 Sikosis"
7LICENSE="MIT"
8REVISION="2"
9srcGitRev="f3d1dadac364295d4aa84b23a41cab948b0c77be"
10SOURCE_URI="https://github.com/HaikuArchives/Brie/archive/$srcGitRev.tar.gz"
11CHECKSUM_SHA256="f593a2bede290ee21758985a1456e63566a83dcfbfb6b9f4319caf9e43abcb4c"
12SOURCE_FILENAME="Brie-$srcGitRev.tar.gz"
13SOURCE_DIR="Brie-$srcGitRev"
14
15ARCHITECTURES="all"
16
17PROVIDES="
18	brie = $portVersion
19	app:BRIE = $portVersion
20	"
21REQUIRES="
22	haiku
23	"
24
25BUILD_REQUIRES="
26	haiku_devel
27	"
28BUILD_PREREQUIRES="
29	makefile_engine
30	cmd:gcc
31	cmd:make
32	"
33
34defineDebugInfoPackage brie \
35	$appsDir/BRIE
36
37BUILD()
38{
39	make $jobArgs
40}
41
42INSTALL()
43{
44	mkdir -p $appsDir
45	make install TARGET_DIR=$appsDir
46	addAppDeskbarSymlink $appsDir/BRIE
47}
48