1SUMMARY="A cloud file syncing application"
2DESCRIPTION="PonyExpress is a cloud file syncing application. \
3It currently supports DropBox full folder syncing.
4The application is still in Alpha and requires more testing \
5so please take care using it for important data."
6HOMEPAGE="https://github.com/wattoc/PonyExpress"
7COPYRIGHT="2021 Craig Watson"
8LICENSE="BSD (3-clause)"
9REVISION="1"
10SOURCE_URI="https://github.com/wattoc/PonyExpress/archive/refs/tags/v$portVersion.tar.gz"
11CHECKSUM_SHA256="02a4da1626cbbb5d473684a028360568240093b90a8f7e5ec8ee887c7d36003b"
12SOURCE_DIR="PonyExpress-$portVersion"
13
14ARCHITECTURES="all !x86"
15
16USER_SETTINGS_FILES="settings/ponyexpress.settings"
17
18PROVIDES="
19	ponyexpress = $portVersion
20	app:ponyexpress = $portVersion
21	"
22REQUIRES="
23	haiku
24	lib:libcurl$secondaryArchSuffix
25	"
26
27BUILD_REQUIRES="
28	haiku_devel
29	devel:libcurl$secondaryArchSuffix
30	"
31BUILD_PREREQUIRES="
32	makefile_engine
33	cmd:gcc
34	cmd:make
35	"
36
37BUILD()
38{
39	make $jobArgs
40}
41
42INSTALL()
43{
44	mkdir -p $appsDir
45	cp -a PonyExpress $appsDir
46	addAppDeskbarSymlink $appsDir/PonyExpress
47}
48