2006-02-23 15:26:10 +00:00
|
|
|
# Description: Package with the GNU diff, diff3, sdiff, and cmp utilities
|
|
|
|
# URL: http://www.gnu.org/software/diffutils/
|
2007-01-23 17:25:18 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=diffutils
|
2011-09-04 14:08:06 +02:00
|
|
|
version=3.2
|
2006-02-23 15:26:10 +00:00
|
|
|
release=1
|
2010-02-14 12:05:06 +01:00
|
|
|
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2010-02-14 12:05:06 +01:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--disable-nls
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
2010-02-14 12:05:06 +01:00
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|