mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
SUMMARY="A GUI-based diff application"
|
|
DESCRIPTION="PonpokoDiff is a graphical file comparison utility. \
|
|
It can compare two files and show its differences graphically. \
|
|
Currently, there's only minimal support for the comparison of folders.
|
|
PonpokoDiff can also be used as an external diff command of Subversion \
|
|
(--diff-cmd)."
|
|
HOMEPAGE="https://code.google.com/p/ponpokodiff/"
|
|
COPYRIGHT="2008 PonpokoDiff Project Contributors"
|
|
LICENSE="MIT"
|
|
REVISION="3"
|
|
SOURCE_URI="https://github.com/HaikuArchives/PonpokoDiff/archive/ca95f7a820d54ec54d9ae4b3ca1a1d8a48dd7f44.tar.gz"
|
|
CHECKSUM_SHA256="f2716c94007030fd92ee54429ac5b1830ac89301687b3614955c7d649bfda657"
|
|
SOURCE_DIR="PonpokoDiff-ca95f7a820d54ec54d9ae4b3ca1a1d8a48dd7f44/source"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
ponpokodiff = $portVersion
|
|
app:ponpokodiff = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a objects/PonpokoDiff $appsDir
|
|
addAppDeskbarSymlink $appsDir/PonpokoDiff
|
|
}
|