core/diffutils/Pkgfile

19 lines
482 B
Plaintext

# Description: Package with the GNU diff, diff3, sdiff, and cmp utilities
# URL: http://www.gnu.org/software/diffutils/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=diffutils
version=3.3
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}