mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
16 lines
288 B
Plaintext
Executable File
16 lines
288 B
Plaintext
Executable File
# description : Programs that show the differences between files or directories
|
|
|
|
name=diffutils
|
|
version=3.10
|
|
release=1
|
|
source="https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|