summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b34a4523bcd113a5b07753c6b3d1b2690529332f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Quint Guvernator <quint at guvernator.net>

pkgname=loadstat
pkgver=0.1.1
pkgrel=1
pkgdesc="Calculate load averages adjusted by number of cores"
url="https://github.com/qguv/loadstat"
arch=('i686' 'x86_64')
license=('GPL')
source=("https://github.com/qguv/$pkgname/archive/$pkgver.tar.gz")
md5sums=('08ce7bdcf3b8efb01edb87b133bda24d')

build() {
  cd "$srcdir/${pkgname}-$pkgver"
  sh build.sh
}

package() {
  cd "$srcdir/${pkgname}-$pkgver"
  install -Dt $pkgdir/usr/bin "$pkgname"
}