Date: Friday, July 18, 2014 @ 22:15:44 Author: thestinger Revision: 115928
add ebizzy Added: ebizzy/ ebizzy/repos/ ebizzy/trunk/ ebizzy/trunk/Makefile ebizzy/trunk/PKGBUILD ----------+ Makefile | 3 +++ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) Added: ebizzy/trunk/Makefile =================================================================== --- ebizzy/trunk/Makefile (rev 0) +++ ebizzy/trunk/Makefile 2014-07-18 20:15:44 UTC (rev 115928) @@ -0,0 +1,3 @@ +LDLIBS = -lpthread + +ebizzy: ebizzy.c Added: ebizzy/trunk/PKGBUILD =================================================================== --- ebizzy/trunk/PKGBUILD (rev 0) +++ ebizzy/trunk/PKGBUILD 2014-07-18 20:15:44 UTC (rev 115928) @@ -0,0 +1,30 @@ +# Maintainer: Daniel Micay <[email protected]> +# Contributor: Masami Ichikawae <[email protected]> +pkgname=ebizzy +pkgver=0.3 +pkgrel=3 +pkgdesc='Generate a workload resembling common web application server workloads' +arch=('i686' 'x86_64') +url="http://ebizzy.sourceforge.net/" +license=('GPL2') +depends=('glibc') +source=('https://downloads.sourceforge.net/project/ebizzy/ebizzy/0.3/ebizzy-0.3.tar.gz' + Makefile) +sha1sums=('e1a8afc36a68a4ea79ad5ec8f786a06d614d8ca5' + '51da05091701e4a2ecc3be9ba638de235f596755') + +build() { + cd $pkgname-$pkgver + make -f ../Makefile +} + +package() { + cd $pkgname-$pkgver + install -Dm 755 $pkgname "$pkgdir/usr/bin/$pkgname" + install -Dm 644 README "$pkgdir/usr/share/$pkgname/README" +} + +check() { + cd $pkgname-$pkgver + ./ebizzy +}
