1SUMMARY="A small application to show your installed fonts"
2DESCRIPTION="
3Fontboy is a small application to show your installed fonts in Haiku. You can \
4get additional information of the selected font and a preview of the complete \
5Unicode charset.
6"
7HOMEPAGE="https://github.com/HaikuArchives/FontBoy"
8COPYRIGHT="1999-2003 Oliver 'Madison' Kohl"
9LICENSE="Artistic"
10REVISION="1"
11SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
12CHECKSUM_SHA256="3842fccf5fe51f014c9d1fa7bcf3e0a1470c8119e9061a6859a80579fe305b9c"
13SOURCE_DIR="FontBoy-$portVersion"
14
15ARCHITECTURES="all"
16
17USER_SETTINGS_FILES="
18	settings/Fontboy_prefs
19	"
20
21PROVIDES="
22	fontboy = $portVersion
23	app:FontBoy = $portVersion
24	"
25REQUIRES="
26	haiku
27	"
28
29BUILD_REQUIRES="
30	haiku_devel
31	"
32BUILD_PREREQUIRES="
33	makefile_engine
34	cmd:g++
35	cmd:make
36	cmd:xres
37	"
38
39BUILD()
40{
41	cd src
42	make $jobArgs
43}
44
45INSTALL()
46{
47	cd src
48	make install INSTALL_DIR=$appsDir/
49	addAppDeskbarSymlink $appsDir/FontBoy
50}
51