summaryrefslogtreecommitdiff
path: root/community/cgmanager/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/cgmanager/PKGBUILD')
-rw-r--r--community/cgmanager/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/cgmanager/PKGBUILD b/community/cgmanager/PKGBUILD
new file mode 100644
index 000000000..7b65f1686
--- /dev/null
+++ b/community/cgmanager/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 110119 2014-04-24 14:03:51Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=cgmanager
+pkgver=0.23
+pkgrel=1
+pkgdesc="Another daemon for managing control groups"
+arch=(i686 x86_64)
+url="https://github.com/cgmanager/cgmanager"
+license=('GPL')
+depends=('libnih')
+makedepends=('help2man')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cgmanager/cgmanager/archive/v$pkgver.tar.gz")
+md5sums=('332705388ac51a7b165e4abbf7a0d2a8')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./bootstrap.sh
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}