ponpokodiff: new release v0.3.0

-> https://github.com/HaikuArchives/PonpokoDiff/releases/tag/v0.3.0
This commit is contained in:
Humdinger
2023-11-12 18:12:17 +01:00
parent 95a10eb5fe
commit 0ed3a0c0b4
2 changed files with 49 additions and 46 deletions

View File

@@ -1,46 +0,0 @@
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://github.com/HaikuArchives/PonpokoDiff"
COPYRIGHT="2008 PonpokoDiff Project Contributors"
LICENSE="MIT"
REVISION="7"
srcGitRev="534bbe74ccecda532529315db07769f1d7fe647e"
SOURCE_URI="https://github.com/HaikuArchives/PonpokoDiff/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="99d88cecd955bb3279e241ef16e381816a057580428fd1552461bb3682b4a89b"
SOURCE_FILENAME="PonpokoDiff-$srcGitRev.tar.gz"
SOURCE_DIR="PonpokoDiff-$srcGitRev/source"
ARCHITECTURES="all ?x86"
PROVIDES="
ponpokodiff = $portVersion
app:ponpokodiff = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp -a objects/PonpokoDiff $appsDir
addAppDeskbarSymlink $appsDir/PonpokoDiff
}

View File

@@ -0,0 +1,49 @@
SUMMARY="A tool to compare text files"
DESCRIPTION="PonpokoDiff is a graphical file comparison utility. \
It compares two files and shows the differences graphically side-by-side. \
Lines that differ are highlighted yellow, additional lines are green, \
removed lines are red.
You can select two files in Tracker and choose PonpokoDiff from the 'Open with...' \
menu to compare them, or drag and drop files into the PonpokoDiff window. The app \
automatically keeps track of renamed and moved files and offers to reload files \
when their contents has changed."
HOMEPAGE="https://github.com/HaikuArchives/PonpokoDiff"
COPYRIGHT="2008-2023 HaikuArchives Team"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="839aa4f15da415d55c3775e784366bf09f6a2a74773f02bc8f727c077c0df737"
SOURCE_DIR="PonpokoDiff-$portVersion"
ARCHITECTURES="all"
PROVIDES="
ponpokodiff = $portVersion
app:PonpokoDiff = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
cd source
make $jobArgs
}
INSTALL()
{
mkdir -p $appsDir
cp -a PonpokoDiff $appsDir
addAppDeskbarSymlink $appsDir/PonpokoDiff
}