Package Details: wrk-git 34.7763ce3-2

Package Base: wrk-git
Description: Modern HTTP benchmarking tool (with --pipeline patch)
Upstream URL: https://github.com/wg/wrk
Category: network
Licenses: Apache
Submitter: trustin
Maintainer: trustin
Last Packager: None
Votes: 4
First Submitted: 2013-05-28 07:56
Last Updated: 2013-12-04 04:29

Dependencies (0)

Required by (0)

Sources

Latest Comments

Comment by pdxleif

2014-02-10 22:46

The patches don't apply cleanly anymore.

Comment by trustin

2013-10-30 14:07

@UnCo, Thank you for suggestion. Fixed.

Comment by UnCO

2013-05-28 14:15

diff --git a/PKGBUILD b/PKGBUILD_20130528_221338
index 5e426c3..4eb1f4e 100644
--- a/PKGBUILD
+++ b/PKGBUILD_20130528_221338
@@ -1,32 +1,29 @@
# Maintainer: Trustin Lee <t@motd.kr>
# Contributor: Pierre Carrier <pierre@gcarrier.fr>
pkgname=wrk-git
+_pkgname=wrk
pkgver=18.1b7161c
pkgrel=1
pkgdesc='Modern HTTP benchmarking tool'
arch=('i686' 'x86_64')
url=https://github.com/wg/wrk
license=('Apache')
-depends=()
makedepends=('git')
-source=('git+https://github.com/wg/wrk.git')
+source=('git://github.com/wg/wrk.git')
md5sums=('SKIP')

-_gitroot='git+https://github.com/wg/wrk.git'
-_gitname='wrk'
-
pkgver() {
- cd $startdir/src/$_gitname
+ cd $_pkgname
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}

build() {
- cd $startdir/src/$_gitname
+ cd $_pkgname
make
}

package() {
- cd $startdir/src/$_gitname
+ cd $_pkgname
install -Dm755 wrk "$pkgdir/usr/bin/wrk"
}