diff options
author | tnut <tnut at nutyx dot com> | 2012-01-08 12:12:28 +0100 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-01-08 12:12:28 +0100 |
commit | 9291e062cb24bac5d7c7059d4dc64669c1917b33 (patch) | |
tree | ae6f7e4fb2769d6c53b214c5e0b4d862f1df98dc /diffutils | |
parent | c9972ec7f32bf9d37388e853fe9bf633e242d05a (diff) | |
download | nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.gz nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.bz2 nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.xz nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.zip |
aaabasicfs 2011-3 et split des dépot base et extra en 2 git séparé
Diffstat (limited to 'diffutils')
-rw-r--r-- | diffutils/.footprint.i686 | 19 | ||||
-rw-r--r-- | diffutils/.footprint.x86_64 | 19 | ||||
-rw-r--r-- | diffutils/.md5sum.i686 | 1 | ||||
-rw-r--r-- | diffutils/.md5sum.x86_64 | 1 | ||||
-rwxr-xr-x | diffutils/Pkgfile | 21 |
5 files changed, 61 insertions, 0 deletions
diff --git a/diffutils/.footprint.i686 b/diffutils/.footprint.i686 new file mode 100644 index 000000000..cf93cfc51 --- /dev/null +++ b/diffutils/.footprint.i686 @@ -0,0 +1,19 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/cmp +-rwxr-xr-x root/root usr/bin/diff +-rwxr-xr-x root/root usr/bin/diff3 +-rwxr-xr-x root/root usr/bin/sdiff +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/diffutils.info.gz +drwxr-xr-x root/root usr/share/locale/ +drwxr-xr-x root/root usr/share/locale/fr/ +drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/diffutils.mo +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/cmp.1.gz +-rw-r--r-- root/root usr/share/man/man1/diff.1.gz +-rw-r--r-- root/root usr/share/man/man1/diff3.1.gz +-rw-r--r-- root/root usr/share/man/man1/sdiff.1.gz diff --git a/diffutils/.footprint.x86_64 b/diffutils/.footprint.x86_64 new file mode 100644 index 000000000..cf93cfc51 --- /dev/null +++ b/diffutils/.footprint.x86_64 @@ -0,0 +1,19 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/cmp +-rwxr-xr-x root/root usr/bin/diff +-rwxr-xr-x root/root usr/bin/diff3 +-rwxr-xr-x root/root usr/bin/sdiff +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/diffutils.info.gz +drwxr-xr-x root/root usr/share/locale/ +drwxr-xr-x root/root usr/share/locale/fr/ +drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/diffutils.mo +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/cmp.1.gz +-rw-r--r-- root/root usr/share/man/man1/diff.1.gz +-rw-r--r-- root/root usr/share/man/man1/diff3.1.gz +-rw-r--r-- root/root usr/share/man/man1/sdiff.1.gz diff --git a/diffutils/.md5sum.i686 b/diffutils/.md5sum.i686 new file mode 100644 index 000000000..0de265247 --- /dev/null +++ b/diffutils/.md5sum.i686 @@ -0,0 +1 @@ +26ff64c332429c830c154be46b393382 diffutils-3.2.tar.xz diff --git a/diffutils/.md5sum.x86_64 b/diffutils/.md5sum.x86_64 new file mode 100644 index 000000000..0de265247 --- /dev/null +++ b/diffutils/.md5sum.x86_64 @@ -0,0 +1 @@ +26ff64c332429c830c154be46b393382 diffutils-3.2.tar.xz 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 +} |