core/diffutils/Pkgfile

20 lines
431 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Package with the GNU diff, diff3, sdiff, and cmp utilities
2021-12-13 12:23:38 +01:00
# URL: https://www.gnu.org/software/diffutils/
2021-08-03 19:06:09 +02:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=diffutils
2023-05-21 16:41:45 +02:00
version=3.10
2016-08-09 19:56:11 +02:00
release=1
2021-12-13 12:23:38 +01:00
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
2023-08-21 21:49:13 +02:00
cd $name-$version
./configure --prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}