1SUMMARY="A long-range bidirectional roman-to-decimal numbers converter"
2DESCRIPTION="This is a bidirectional roman-to-decimal numbers converter. \
3The program can convert integers from 1 to 2147483647 with the parentheses \
4notation. It has a simple GUI including a challenging exam mode that features \
5two difficulty levels.
6The program can also be used from the console to convert numbers. To do so,\
7just execute the program while also providing the number to be converted as \
8its only argument. See the homepage for further information."
9HOMEPAGE="https://github.com/cnelmortimer/RomanNumbers"
10COPYRIGHT="2019 N.C. Cruz"
11LICENSE="MIT"
12REVISION="2"
13srcGitRev="8c51b3f2e1297eef5bde46a7b6e38d1fd8981559"
14SOURCE_URI="https://github.com/cnelmortimer/RomanNumbers/archive/$srcGitRev.tar.gz"
15CHECKSUM_SHA256="a7c4d4509482d80be0d4ba27768b0fb574457e441b4419313bd76f35187ac5c3"
16SOURCE_DIR="RomanNumbers-$srcGitRev"
17
18ARCHITECTURES="all"
19
20PROVIDES="
21	romannumbers = $portVersion
22	app:RomanNumbers = $portVersion
23	"
24REQUIRES="
25	haiku
26	"
27
28BUILD_REQUIRES="
29	haiku_devel
30	"
31BUILD_PREREQUIRES="
32	cmd:g++
33	cmd:make
34	"
35
36BUILD()
37{
38	make
39}
40
41INSTALL()
42{
43	mkdir -p $appsDir
44	cp -a RomanNumbers $appsDir
45	addAppDeskbarSymlink $appsDir/RomanNumbers
46}
47