mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
21 lines
482 B
Plaintext
Executable File
21 lines
482 B
Plaintext
Executable File
# description : Programs that show the differences between files or directories
|
|
# homepage : https://www.gnu.org/software/diffutils
|
|
# maintainer : emmett1, emmett1.2miligrams at gmail.com
|
|
# depends : bash
|
|
|
|
name=diffutils
|
|
version=3.7
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
|
md5sum=(4824adc0e95dbbf11dfbdfaad6a1e461)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/info/
|
|
}
|