1SUMMARY="A tool to inspect and edit resource files"
2DESCRIPTION="QuickRes is an application for editing BeOS resource files. It \
3allows direct editing of data in standard binary resources (BResources), \
4attributes, and a new resource source file format.
5
6* Save and load files in both binary (.rsrc) and source (.rdef) format.
7* A new resource definition format that natively understands common Be data \
8types, including BMessage.
9* Edit both attributes and resources.
10* In-place viewing and editing of resource data, as well as full-window \
11editors.
12* Add-on architecture for resource editors (a toolkit for implementing your \
13own add-ons is included).
14
15Currently includes editors for:
16* Raw data (hex editor)
17* Integers and floating point numbers
18* BRect
19* BPoint
20* rgb_color
21* Application flags
22* Strings
23* Bitmaps
24* Icons
25* Cursors"
26HOMEPAGE="http://www.angryredplanet.com/~hackbod/beos/quickres.html"
27COPYRIGHT="2000-2001, Dianne Hackborn
28	1991-2000, Be Incorporated."
29LICENSE="Be Sample Code License"
30REVISION="3"
31SOURCE_URI="http://www.angryredplanet.com/~hackbod/beos/QuickRes-x86-20010126.zip"
32CHECKSUM_SHA256="2ac84b361dfd7260564624f79ce7c7c52b768b89a98eaade322ad4a3ade194a7"
33SOURCE_DIR="QuickRes"
34ADDITIONAL_FILES="quickres.rdef"
35
36ARCHITECTURES="x86_gcc2"
37DISABLE_SOURCE_PACKAGE="yes"
38
39PROVIDES="
40	quickres = $portVersion
41	app:QuickRes = $portVersion
42	"
43REQUIRES="
44	haiku
45	"
46
47BUILD_REQUIRES="
48	haiku_devel
49	"
50BUILD_PREREQUIRES="
51	cmd:unzip
52	"
53
54BUILD()
55{
56	true
57}
58
59INSTALL()
60{
61	mkdir -p $appsDir/QuickRes
62	chmod +x QuickRes
63	cp -r * $appsDir/QuickRes
64
65	addResourcesToBinaries $portDir/additional-files/quickres.rdef \
66		$appsDir/QuickRes/QuickRes
67	addAppDeskbarSymlink $appsDir/QuickRes/QuickRes
68}
69