summaryrefslogtreecommitdiffstats
path: root/base/psmisc
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:10:14 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:10:14 +0200
commit70c7099aec2e9e2e522dfe251d19241104a5525d (patch)
tree43e9fc063aff9609a4c9efd4ba31041e1a24dc24 /base/psmisc
parentf5c4cfe6946b11d62f16e833369367dbf5008671 (diff)
downloadnutyx-pakxe-70c7099aec2e9e2e522dfe251d19241104a5525d.tar.gz
nutyx-pakxe-70c7099aec2e9e2e522dfe251d19241104a5525d.tar.bz2
nutyx-pakxe-70c7099aec2e9e2e522dfe251d19241104a5525d.tar.xz
nutyx-pakxe-70c7099aec2e9e2e522dfe251d19241104a5525d.zip
Ajout de psmisc#22.6-1
Diffstat (limited to 'base/psmisc')
-rw-r--r--base/psmisc/.footprint20
-rw-r--r--base/psmisc/.md5sum1
-rwxr-xr-xbase/psmisc/Pkgfile21
3 files changed, 42 insertions, 0 deletions
diff --git a/base/psmisc/.footprint b/base/psmisc/.footprint
new file mode 100644
index 000000000..de99a35a1
--- /dev/null
+++ b/base/psmisc/.footprint
@@ -0,0 +1,20 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/fuser
+-rwxr-xr-x root/root bin/killall
+-rwxr-xr-x root/root bin/oldfuser
+-rwxr-xr-x root/root bin/peekfd
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/pstree
+lrwxrwxrwx root/root usr/bin/pstree.x11 -> pstree
+drwxr-xr-x root/root usr/share/
+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/psmisc.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/fuser.1.gz
+-rw-r--r-- root/root usr/share/man/man1/killall.1.gz
+-rw-r--r-- root/root usr/share/man/man1/peekfd.1.gz
+-rw-r--r-- root/root usr/share/man/man1/pstree.1.gz
diff --git a/base/psmisc/.md5sum b/base/psmisc/.md5sum
new file mode 100644
index 000000000..27ef25f31
--- /dev/null
+++ b/base/psmisc/.md5sum
@@ -0,0 +1 @@
+2e81938855cf5cc38856bd4a31d79a4c psmisc-22.6.tar.gz
diff --git a/base/psmisc/Pkgfile b/base/psmisc/Pkgfile
new file mode 100755
index 000000000..77d9d5bdd
--- /dev/null
+++ b/base/psmisc/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Petits utilitaires qui utilisent le système de fichiers /proc
+# URL: http://psmisc.sourceforge.net/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: ncurses
+
+name=psmisc
+version=22.6
+release=1
+source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --exec-prefix=""
+ make -j2
+ make DESTDIR=$PKG install
+ mkdir -p $PKG/usr/bin
+ mv -v $PKG/bin/pstree* $PKG/usr/bin/
+}