mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/httest: new aport
A script based tool for testing and benchmarking web applications http://htt.sourceforge.net
This commit is contained in:
parent
f65b013d56
commit
3845837c83
50
testing/httest/APKBUILD
Normal file
50
testing/httest/APKBUILD
Normal file
@ -0,0 +1,50 @@
|
||||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=httest
|
||||
pkgver=2.4.8
|
||||
pkgrel=0
|
||||
pkgdesc="A script based tool for testing and benchmarking web applications"
|
||||
url="http://htt.sourceforge.net"
|
||||
arch="all"
|
||||
license="ASL 2.0"
|
||||
depends=""
|
||||
depends_dev=""
|
||||
makedepends="apr-dev apr-util-dev pcre-dev"
|
||||
install=""
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
source="http://downloads.sourceforge.net/project/htt/htt2.4/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/$pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/share/man \
|
||||
--infodir=/usr/share/info \
|
||||
--localstatedir=/var \
|
||||
|| return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
rm -f "$pkgdir"/usr/lib/*.la
|
||||
}
|
||||
|
||||
md5sums="e9f04f48136bbbd85463cf3d4049be14 httest-2.4.8.tar.gz"
|
||||
sha256sums="7c6cda4fced85ed0dd8e1e2b9053b9ff7db50a88843c4e2482e3fff601e5cb5c httest-2.4.8.tar.gz"
|
||||
sha512sums="2829d6cbd1ecb6aa602652350b4c4b317e653068a62d25e13d427cec6c2deda25481a1de14a2853987b224e5a942a06a26036e6ad503bb89356c18ed16da3a02 httest-2.4.8.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user