1SUMMARY="A simple, powerful contact manager"
2DESCRIPTION="Mr. Peeps! is an app for managing People files that has more \
3features than other contact managers. Highlights:
4 * Autosave: no more clicking File | Save or typing Alt-S. Edit it and it's \
5saved that way.
6 * Multiple groups - separate group names with a comma
7 * More Data: handles more types of data than even People v2 and \
8DeeperPeople, such as birthdays, anniversaries, and other personal data.
9 * Fast keyboard navigation:
10   * Use Tab and Shift-Tab to jump between data fields
11   * Alt-Up and Alt-Down go to the next/previous person, no matter what
12   * When using the People list, use the cursor keys or jump to a person \
13using a letter key
14   * Use the Alt key plus the 1-5 keys to change tabs, i.e. Alt+2 is the \
15Personal tab"
16HOMEPAGE="https://github.com/HaikuArchives/MrPeeps"
17COPYRIGHT="2003 Jon Yoder (DarkWyrm)"
18LICENSE="MIT"
19REVISION="4"
20srcGitRev="7b136f1d5b6bc2ba4bf90d379d9376d39f37fc4e"
21SOURCE_URI="https://github.com/HaikuArchives/MrPeeps/archive/$srcGitRev.tar.gz"
22CHECKSUM_SHA256="001e1bf4ee04bb7e7e40945ae8da37f6692d3188b2bf08f52f987f90ed4641d6"
23SOURCE_DIR="MrPeeps-$srcGitRev"
24
25ARCHITECTURES="all ?x86"
26
27PROVIDES="
28	mrpeeps = $portVersion
29	app:MrPeeps = $portVersion
30	"
31REQUIRES="
32	haiku
33	"
34
35BUILD_REQUIRES="
36	haiku_devel
37	"
38BUILD_PREREQUIRES="
39	makefile_engine
40	cmd:g++
41	cmd:make
42	"
43
44BUILD()
45{
46	cd src
47	make $jobArgs OBJ_DIR=objects
48}
49
50INSTALL()
51{
52	mkdir -p $appsDir
53	cd src
54	cp -f objects/MrPeeps $appsDir
55	addAppDeskbarSymlink $appsDir/MrPeeps "Mr. Peeps!"
56}
57