summaryrefslogtreecommitdiffstats
path: root/base/findutils
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:46:58 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:46:58 +0200
commitedea8f585166337ef71b1a4438f3d6c4ecd79e47 (patch)
tree451a71b5daf0ad110de62ce02d6f31ef98930efd /base/findutils
parent272fc119db440da4623eeaccc51c7ea45d0cb064 (diff)
downloadnutyx-extra-edea8f585166337ef71b1a4438f3d6c4ecd79e47.tar.gz
nutyx-extra-edea8f585166337ef71b1a4438f3d6c4ecd79e47.tar.bz2
nutyx-extra-edea8f585166337ef71b1a4438f3d6c4ecd79e47.tar.xz
nutyx-extra-edea8f585166337ef71b1a4438f3d6c4ecd79e47.zip
Ajout de findutils#4.4.2-1
Diffstat (limited to 'base/findutils')
-rw-r--r--base/findutils/.footprint32
-rw-r--r--base/findutils/.md5sum1
-rwxr-xr-xbase/findutils/Pkgfile26
3 files changed, 59 insertions, 0 deletions
diff --git a/base/findutils/.footprint b/base/findutils/.footprint
new file mode 100644
index 000000000..5411e43d0
--- /dev/null
+++ b/base/findutils/.footprint
@@ -0,0 +1,32 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/find
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/locate
+-rwxr-xr-x root/root usr/bin/oldfind
+-rwxr-xr-x root/root usr/bin/updatedb
+-rwxr-xr-x root/root usr/bin/xargs
+drwxr-xr-x root/root usr/lib/
+drwxr-xr-x root/root usr/lib/findutils/
+-rwxr-xr-x root/root usr/lib/findutils/bigram
+-rwxr-xr-x root/root usr/lib/findutils/code
+-rwxr-xr-x root/root usr/lib/findutils/frcode
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/find-maint.info.gz
+-rw-r--r-- root/root usr/share/info/find.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/findutils.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/find.1.gz
+-rw-r--r-- root/root usr/share/man/man1/locate.1.gz
+-rw-r--r-- root/root usr/share/man/man1/updatedb.1.gz
+-rw-r--r-- root/root usr/share/man/man1/xargs.1.gz
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/locatedb.5.gz
+drwxr-xr-x root/root var/
+drwxr-xr-x root/root var/lib/
+drwxr-xr-x root/root var/lib/locate/
diff --git a/base/findutils/.md5sum b/base/findutils/.md5sum
new file mode 100644
index 000000000..ad6613988
--- /dev/null
+++ b/base/findutils/.md5sum
@@ -0,0 +1 @@
+351cc4adb07d54877fa15f75fb77d39f findutils-4.4.2.tar.gz
diff --git a/base/findutils/Pkgfile b/base/findutils/Pkgfile
new file mode 100755
index 000000000..50b5b0dc0
--- /dev/null
+++ b/base/findutils/Pkgfile
@@ -0,0 +1,26 @@
+# Description: Outil de recherche de fichiers
+# URL: http://www.gnu.org/software/findutils/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: gdbm
+
+name=findutils
+version=4.4.2
+release=1
+source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz\
+ )
+
+build() {
+cd $name-$version
+./configure --prefix=/usr \
+ --localstatedir=/var/lib/locate \
+ --libexecdir=/usr/lib/findutils
+make
+make DESTDIR=$PKG install
+mkdir $PKG/bin
+mv -v $PKG/usr/bin/find $PKG/bin/
+sed -i -e 's/find:=${BINDIR}/find:=\/bin/' $PKG/usr/bin/updatedb
+if [ -f $PKG/usr/share/info/dir ]; then
+ rm $PKG/usr/share/info/dir
+fi
+}