1SUMMARY="A tool to compare text files"
2DESCRIPTION="PonpokoDiff is a graphical file comparison utility. \
3It compares two files and shows the differences graphically side-by-side. \
4Lines that differ are highlighted yellow, additional lines are green, \
5removed lines are red.
6
7You can select two files in Tracker and choose PonpokoDiff from the 'Open with...' \
8menu to compare them, or drag and drop files into the PonpokoDiff window. The app \
9automatically keeps track of renamed and moved files and offers to reload files \
10when their contents has changed."
11HOMEPAGE="https://github.com/HaikuArchives/PonpokoDiff"
12COPYRIGHT="2008-2024 HaikuArchives Team"
13LICENSE="MIT"
14REVISION="1"
15SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
16CHECKSUM_SHA256="78c6b19df972bf9edd2b55c9e39a2f694936e7dd5f6557660ea19aa86475c131"
17SOURCE_DIR="PonpokoDiff-$portVersion"
18
19ARCHITECTURES="all"
20
21PROVIDES="
22	ponpokodiff = $portVersion
23	app:PonpokoDiff = $portVersion
24	"
25REQUIRES="
26	haiku
27	"
28
29BUILD_REQUIRES="
30	haiku_devel
31	"
32BUILD_PREREQUIRES="
33	makefile_engine
34	cmd:gcc
35	cmd:make
36	"
37
38BUILD()
39{
40	cd source
41	make $jobArgs
42	make bindcatalogs
43}
44
45INSTALL()
46{
47	mkdir -p $appsDir
48	cp -a PonpokoDiff $appsDir
49	addAppDeskbarSymlink $appsDir/PonpokoDiff
50}
51