diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-12 18:57:15 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-12 18:57:15 -0200 |
commit | 5bd15656af43bd3ded1f2b50cf6c2743e4618cac (patch) | |
tree | 13909044419cd3e4625f740325baf279555388d0 /pcr/multiwatch | |
parent | abf4be4728f54e66546bde38fe88ae2169b71200 (diff) | |
download | abslibre-5bd15656af43bd3ded1f2b50cf6c2743e4618cac.tar.gz abslibre-5bd15656af43bd3ded1f2b50cf6c2743e4618cac.tar.bz2 abslibre-5bd15656af43bd3ded1f2b50cf6c2743e4618cac.zip |
multiwatch: adding new package on [kernels] repo
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: |