summaryrefslogtreecommitdiffstats
path: root/diffutils/Pkgfile
blob: 4a6c7aa11b44ca41c4d174b4322cb198e8afbfaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
description="Package with the GNU diff, diff3, sdiff, and cmp utilities"
packager=""
maintainer="CRUX System Team, core-ports at crux dot nu"
url="http://www.gnu.org/software/diffutils/"
depends=()

name=diffutils
version=3.0
release=1
source=(http://ftp.gnu.org/gnu/diffutils/diffutils-3.0.tar.xz)
build () 
{ 
    cd $name-$version;
    ./configure --prefix=/usr --mandir=/usr/man --disable-nls;
    make;
    make DESTDIR=$PKG install;
    rm -r $PKG/usr/share
}