summaryrefslogtreecommitdiff
path: root/community/ioping/PKGBUILD
blob: 24e4a9bef69989927824390e7e04e4a87427195c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 73606 2012-07-11 14:58:41Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Kovivchak Evgen <oneonfire@gmail.com>

pkgname=ioping
pkgver=0.6
pkgrel=1
pkgdesc='Simple disk I/0 latency measuring tool'
arch=('i686' 'x86_64' 'mips64el')
license=('GPL3')
url='http://ioping.googlecode.com'
depends=('glibc')
source=("http://ioping.googlecode.com/files/$pkgname-$pkgver.tar.gz")
md5sums=('f96b382a6517c7eac744291b04b928b1')

build() {
  cd $pkgname-$pkgver
  make PREFIX=/usr
}

package() {
  cd $pkgname-$pkgver
  make PREFIX="$pkgdir/usr" install
}

# vim:set ts=2 sw=2 et: