summaryrefslogtreecommitdiff
path: root/community/zramctl/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/zramctl/PKGBUILD')
-rw-r--r--community/zramctl/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/community/zramctl/PKGBUILD b/community/zramctl/PKGBUILD
new file mode 100644
index 000000000..8b4b5f26c
--- /dev/null
+++ b/community/zramctl/PKGBUILD
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 113760 2014-06-29 16:15:23Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+
+pkgname=zramctl
+pkgver=0.1
+pkgrel=1
+pkgdesc="Tool to control zram devices"
+arch=('i686' 'x86_64')
+url="https://github.com/Nefelim4ag/zramctl"
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('git')
+source=("git+https://github.com/Nefelim4ag/zramctl.git#tag=$pkgver")
+md5sums=('SKIP')
+
+build() {
+ cd zramctl
+ ./compile.sh
+}
+
+package() {
+ install -Dm755 zramctl/zramctl "$pkgdir/usr/bin/zramctl"
+}