Commit e7772def authored by Seblu's avatar Seblu
Browse files

add httperf


git-svn-id: https://seblu.net/s/archpkg@135 02741741-5192-46b8-8916-7152b19231d9
parent 75a42f40
Loading
Loading
Loading
Loading

httperf/PKGBUILD

0 → 100644
+27 −0
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
# Contributor: Essien Ita Essien <me@essienitaessien.com>
# Contributor: Peter Baldwin <bald_pete@hotmail.com>

pkgname=httperf
pkgver=0.9.0
pkgrel=4
pkgdesc='A tool for measuring web server performance.'
arch=('i686' 'x86_64')
license=('GPL2')
url='http://code.google.com/p/httperf'
depends=('openssl')
source=("http://httperf.googlecode.com/files/$pkgname-$pkgver.tar.gz")
md5sums=('2968c36b9ecf3d98fc1f2c1c9c0d9341')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr 
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

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