summaryrefslogtreecommitdiff
path: root/community/procstatd
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/procstatd
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/procstatd')
-rw-r--r--community/procstatd/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/procstatd/PKGBUILD b/community/procstatd/PKGBUILD
new file mode 100644
index 000000000..5f11cecf9
--- /dev/null
+++ b/community/procstatd/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 5270 2009-11-07 13:16:35Z ibiru $
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+# Maintainer: Jason Chu <jason@archlinux.org>
+
+pkgname=procstatd
+pkgver=1.4.2
+pkgrel=5
+pkgdesc="A daemon that can be run either from userspace or inetd that can be queried via a simple API to parse various files in /proc"
+arch=('i686 x86_64')
+license=('GPL')
+source=(http://downloads.sourceforge.net/herdtools/$pkgname.tar.gz)
+md5sums=('1fdeaf05ca6337f5c02e76a76c53c407')
+url="http://www.phy.duke.edu/brahma/"
+
+build() {
+cd $startdir/src/$pkgname
+# Get rid of the funky mkae install forever bug
+sed -i 's/make install/echo/;s/cd watchman/echo/' Makefile
+make || return 1
+make INSTDIR=$startdir/pkg/usr install
+mkdir ${pkgdir}/usr/share
+mv ${pkgdir}/usr/man ${pkgdir}/usr/share/man
+#mkdir -p $startdir/pkg/usr/share/procstatd-extras
+#cp -R webwatch $startdir/pkg/usr/share/procstatd-extras/
+}