mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 08:40:06 +02:00
70 lines
1.8 KiB
Bash
70 lines
1.8 KiB
Bash
SUMMARY="Several programs for finding differences between files"
|
||
DESCRIPTION="You can use the diff command to show differences between two \
|
||
files, or each corresponding file in two directories. diff outputs \
|
||
differences between files line by line in any of several formats, selectable \
|
||
by command line options. This set of differences is often called a ‘diff’ or \
|
||
‘patch’.
|
||
You can use the cmp command to show the offsets and line numbers where two \
|
||
files differ. cmp can also show all the characters that differ between the two \
|
||
files, side by side.
|
||
You can use the diff3 command to show differences among three files. When two \
|
||
people have made independent changes to a common original, diff3 can report \
|
||
the differences between the original and the two changed versions, and can \
|
||
produce a merged file that contains both persons' changes together with \
|
||
warnings about conflicts.
|
||
You can use the sdiff command to merge two files interactively."
|
||
LICENSE="GNU GPL v3"
|
||
COPYRIGHT="1992-2016 Free Software Foundation, Inc."
|
||
HOMEPAGE="http://www.gnu.org/software/diffutils/"
|
||
SOURCE_URI="http://ftp.gnu.org/pub/gnu/diffutils/diffutils-$portVersion.tar.xz"
|
||
CHECKSUM_SHA256="db53c025f2ac3d217bcf753dad6dee7b410b33d0948495ff015aaf8b91189ce2"
|
||
REVISION="1"
|
||
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
||
|
||
PROVIDES="
|
||
diffutils = $portVersion
|
||
cmd:diff = $portVersion
|
||
cmd:cmp = $portVersion
|
||
cmd:diff3 = $portVersion
|
||
cmd:sdiff = $portVersion
|
||
"
|
||
REQUIRES="
|
||
haiku
|
||
"
|
||
BUILD_REQUIRES="
|
||
haiku_devel
|
||
"
|
||
BUILD_PREREQUIRES="
|
||
cmd:make
|
||
cmd:gcc
|
||
cmd:awk
|
||
cmd:sed
|
||
cmd:grep
|
||
"
|
||
|
||
PATCHES="diffutils-$portVersion.patchset"
|
||
|
||
defineDebugInfoPackage diffutils \
|
||
$binDir/cmp \
|
||
$binDir/diff \
|
||
$binDir/diff3 \
|
||
$binDir/sdiff
|
||
|
||
BUILD()
|
||
{
|
||
runConfigure ./configure \
|
||
--disable-gcc-warnings
|
||
make
|
||
}
|
||
|
||
INSTALL()
|
||
{
|
||
make install
|
||
rm $libDir/charset.alias
|
||
}
|
||
|
||
TEST()
|
||
{
|
||
make check
|
||
}
|