diffstat: bump version.

This commit is contained in:
Jerome Duval
2020-05-05 13:55:20 +02:00
parent bd34643aa3
commit 7e3ae0f01a

View File

@@ -0,0 +1,46 @@
SUMMARY="Display a histogram of diff changes"
DESCRIPTION="Reads the output of diff and displays a histogram of the \
insertions, deletions, and modifications per-file. It is useful for \
reviewing large, complex files."
HOMEPAGE="https://invisible-island.net/diffstat/diffstat.html"
COPYRIGHT="1994-2016 Thomas E. Dickey"
LICENSE="Diffstat"
REVISION="1"
SOURCE_URI="ftp://ftp.invisible-island.net/diffstat/diffstat-$portVersion.tgz"
CHECKSUM_SHA256="7eddd53401b99b90bac3f7ebf23dd583d7d99c6106e67a4f1161b7a20110dc6f"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
diffstat = $portVersion
cmd:diffstat = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
cmd:diff
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
BUILD()
{
runConfigure --omit-dirs docDir ./configure
make $jobArgs
}
INSTALL()
{
mkdir -p $binDir
make install
}
TEST()
{
make check
}