summaryrefslogtreecommitdiff
path: root/community/zramctl/PKGBUILD
blob: 8b4b5f26c7c4caef77a3410484efdb0dab631459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"
}