blob: 2a6c242a02314a73d9aef1b6008ac51b817fec92 (
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.2
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"
}
|