core/diffutils/Pkgfile

17 lines
418 B
Plaintext

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