1SUMMARY="A map application"
2DESCRIPTION="\"Maps\" is a minimalistic map viewer app that is simple \
3and easy to use. Search for places by typing the name or the coordinates \
4of the place in the search box and get results by pressing enter. Zoom in \
5and out by scrolling your mouse. Drag with your mouse to move around."
6HOMEPAGE="https://github.com/raefaldhia/Maps"
7COPYRIGHT="2016-2017 Raefaldhi Amartya Junior"
8LICENSE="MIT"
9REVISION="1"
10srcGitRev="fae2e64aca6ad00e2827556f8ddaf24adec891b8"
11SOURCE_URI="https://github.com/raefaldhia/Maps/archive/$srcGitRev.tar.gz"
12CHECKSUM_SHA256="bec05e952fec0af76d21ad1a1ab04905ab5d8f04037c6fbd20a49dfa1e811684"
13SOURCE_DIR="Maps-$srcGitRev"
14
15ARCHITECTURES="all"
16
17PROVIDES="
18	maps = $portVersion
19	app:Maps = $portVersion
20	"
21REQUIRES="
22	haiku
23	"
24
25BUILD_REQUIRES="
26	haiku_devel
27	"
28BUILD_PREREQUIRES="
29	makefile_engine
30	cmd:g++
31	cmd:make
32	"
33
34BUILD()
35{
36	make OBJ_DIR=objects
37}
38
39INSTALL()
40{
41	mkdir -p $appsDir
42	cp objects/Maps $appsDir
43	addAppDeskbarSymlink $appsDir/Maps
44}
45