summaryrefslogtreecommitdiff
path: root/pcr/multiwatch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-02-12 18:57:15 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-02-12 18:57:15 -0200
commit5bd15656af43bd3ded1f2b50cf6c2743e4618cac (patch)
tree13909044419cd3e4625f740325baf279555388d0 /pcr/multiwatch
parentabf4be4728f54e66546bde38fe88ae2169b71200 (diff)
multiwatch: adding new package on [kernels] repo
Diffstat (limited to 'pcr/multiwatch')
-rw-r--r--pcr/multiwatch/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/multiwatch/PKGBUILD b/pcr/multiwatch/PKGBUILD
new file mode 100644
index 000000000..2cf0bcc68
--- /dev/null
+++ b/pcr/multiwatch/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Paul Dann <pdgiddie at gmail dot com>
+pkgname=multiwatch
+pkgver='1.0.0'
+pkgrel=1
+pkgdesc='Forks and watches multiple instances of a program in the same context'
+arch=('i686' 'x86_64')
+url="http://redmine.lighttpd.net/projects/multiwatch/wiki"
+license=('MIT')
+depends=('libev')
+makedepends=('cmake')
+source=("http://download.lighttpd.net/multiwatch/releases-1.x/multiwatch-$pkgver.tar.bz2")
+md5sums=('87f74dbaf5318f2b2dce3d0bf9f5025c')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ rm -rf build
+ mkdir build
+ cd build
+ cmake ..
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver/build"
+ install -Dm 755 multiwatch $pkgdir/usr/bin/multiwatch
+}
+
+# vim:set ts=2 sw=2 et: