1SUMMARY="Turn legacy BeOS application icons into PNGs"
2DESCRIPTION="\
3With app2png, you can extract attribute-based bitmap icons from BeOS apps and \
4save them into PNG files. These PNG icons can then be used to recreate the \
5icon as a vector, or for use on a website."
6HOMEPAGE="https://github.com/HaikuArchives/app2png"
7COPYRIGHT="2015 Puck Meerburg"
8LICENSE="MIT"
9REVISION="2"
10SOURCE_URI="https://github.com/HaikuArchives/app2png/archive/17c36271a80a822ac0dfec66527e61f21230a412.tar.gz"
11CHECKSUM_SHA256="5b95076384bf7d315749a12e26f064c341389afc5552825653ea4205c9bf9b59"
12SOURCE_DIR="app2png-17c36271a80a822ac0dfec66527e61f21230a412"
13
14ARCHITECTURES="all"
15
16PROVIDES="
17	app2png = $portVersion
18	cmd:app2png = $portVersion
19	"
20REQUIRES="
21	haiku
22	"
23
24BUILD_REQUIRES="
25	haiku_devel
26	"
27BUILD_PREREQUIRES="
28	makefile_engine
29	cmd:gcc
30	cmd:make
31	"
32
33BUILD()
34{
35	make $jobArgs OBJ_DIR=objects
36}
37
38INSTALL()
39{
40	mkdir -p $binDir
41	cp -a objects/app2png $binDir
42}
43