summaryrefslogtreecommitdiffstats
path: root/dstat/PKGBUILD
blob: fa3ecad456f7d86bf351da8f157a2dbfc78c85bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Schnouki <thomas.jost@gmail.com>
# Contributor: devon <admin@patched.biz>
pkgname=dstat
pkgver=0.7.1
pkgrel=1
pkgdesc="Dstat: Versatile resource statistics tool"
arch=('any')
url="http://dag.wieers.com/home-made/dstat/"
license=('GPL')
depends=('python')
source=(http://dag.wieers.com/home-made/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('a9287762c4b9dade5fd85124ccd003c8')
sha1sums=('41c958b4bd3222bbb6776fe1986278938800243d')

build() {
  cd $srcdir/$pkgname-$pkgver
  make DESTDIR=$pkgdir install || return 1

  cd docs
  for f in *.html *.txt; do
    install -Dm644 $f $pkgdir/usr/share/doc/$pkgname/$f || return 1
  done  
}