diff options
author | root <root@rshg054.dnsready.net> | 2013-02-13 00:04:32 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-13 00:04:32 -0800 |
commit | 0671250710c3e7312a4693ac45ebbaacf471d1dc (patch) | |
tree | f40a26f2fd5267582cf25a84886471773bc160c8 /pcr/multiwatch | |
parent | 29b0da64a462b6c5f6871b08e344b3ffa59cbd0a (diff) |
Wed Feb 13 00:04:27 PST 2013
Diffstat (limited to 'pcr/multiwatch')
-rw-r--r-- | pcr/multiwatch/PKGBUILD | 28 |
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: |