18 lines
429 B
Text
18 lines
429 B
Text
![]() |
# Description: Programs that show the differences between files or directories
|
||
|
# URL: https://www.gnu.org/software/diffutils
|
||
|
# Maintainer: emmett1, emmett1.2miligrams at gmail.com
|
||
|
# Depends on: bash
|
||
|
|
||
|
name=diffutils
|
||
|
version=3.7
|
||
|
release=1
|
||
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|