blob: e7a0b9f64a9ba2b3e7658201b0df002e3d339216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
description="Package with the GNU diff, diff3, sdiff, and cmp utilities."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.gnu.org/software/diffutils/"
depends=()
name=diffutils
version=3.0
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build ()
{
cd $name-$version;
./configure \
${CHOST:+--build=${CHOST}} \
${CTARGET:+--host=${CTARGET}} \
--prefix=$prefix \
--mandir=$mandir \
$(use_enable nls);
make;
make DESTDIR=$PKG install;
}
|