aports/testing/wbox/APKBUILD
Fabian Affolter eef2c0e1fd Initial APKBUILD for wbox
Package description:
Wbox aims to help you having fun while testing HTTP related stuff.
You can use it to perform many tasks, including the following.
 * Benchmarking how much time it takes to generate content
   for your web application.
 * Web server and web application stressing.
 * Testing virtual domains configuration without the need to alter
   your local resolver.
 * Check if your redirects are working correctly emitting
   the right HTTP code.
 * Test if the HTTP compression is working and if it is actually
   serving pages faster.
 * Use it as a configuration-less HTTP server to share files!

Website: http://www.hping.org/wbox/
2012-01-16 14:50:44 +00:00

29 lines
648 B
Plaintext

# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=wbox
pkgver=5
pkgrel=0
pkgdesc="HTTP testing tool and configuration-less HTTP server"
url="http://www.hping.org/wbox/"
arch="all"
license="BSD"
depends=""
depends_dev=""
makedepends=""
install=""
subpackages=""
source="http://www.hping.org/wbox/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$_builddir"
make || return 1
}
package() {
cd "$_builddir"
install -m755 -D "$_builddir"/$pkgname "$pkgdir"/usr/bin/$pkgname
}
md5sums="a95ca2c69982db10704b5ed482c9c722 wbox-5.tar.gz"