summaryrefslogtreecommitdiffstats
path: root/diffutils/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'diffutils/Pkgfile')
-rwxr-xr-xdiffutils/Pkgfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/diffutils/Pkgfile b/diffutils/Pkgfile
new file mode 100755
index 000000000..d12c595a6
--- /dev/null
+++ b/diffutils/Pkgfile
@@ -0,0 +1,21 @@
+# 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
+ ./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
+}