mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
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/
This commit is contained in:
parent
1367bc1c35
commit
eef2c0e1fd
28
testing/wbox/APKBUILD
Normal file
28
testing/wbox/APKBUILD
Normal file
@ -0,0 +1,28 @@
|
||||
# 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"
|
||||
Loading…
x
Reference in New Issue
Block a user