1SUMMARY="An imprecise clock"
2DESCRIPTION="WordClock is an imprecise clock that displays the time in words \
3instead of digits. You can change the used font and embed the clock as a \
4Replicant on the Desktop."
5HOMEPAGE="https://github.com/Janus2/WordClock"
6COPYRIGHT="2017 Janus"
7LICENSE="MIT"
8REVISION="1"
9srcGitRev="cbb5da9a498ec99a71a68f039042601207eafdd1"
10SOURCE_URI="https://github.com/Janus2/WordClock/archive/$srcGitRev.tar.gz"
11CHECKSUM_SHA256="fe29a3f17467927f88052d9c260b894d8424cf175b633aa2ad22deea2b25abba"
12SOURCE_FILENAME="WordClock-$srcGitRev.tar.gz"
13SOURCE_DIR="WordClock-$srcGitRev"
14
15ARCHITECTURES="all"
16
17PROVIDES="
18	wordclock = $portVersion
19	app:WordClock = $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 $jobArgs
37	make bindcatalogs
38}
39
40INSTALL()
41{
42	mkdir -p $appsDir
43	make install TARGET_DIR=$appsDir
44
45	addAppDeskbarSymlink $appsDir/WordClock
46}
47