blob: e6d5a747b7dac3b4b3d3298a751369242fcaecc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Description: Programmes permettant de montrer la différence entre fichiers ou répertoires
# URL: http://www.gnu.org/software/diffutils/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=diffutils
version=3.2
release=1
source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
sed -i '/gets is a security hole/d' lib/stdio.in.h
./configure --prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
if [ -f $PKG/usr/share/info/dir ]; then
rm $PKG/usr/share/info/dir
fi
}
|