Date: Tuesday, November 1, 2022 @ 22:42:01
Author: felixonmars
Revision: 1340485
archrelease: copy trunk to community-staging-x86_64
Added:
slowhttptest/repos/community-staging-x86_64/
slowhttptest/repos/community-staging-x86_64/PKGBUILD
(from rev 1340483, slowhttptest/trunk/PKGBUILD)
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: slowhttptest/repos/community-staging-x86_64/PKGBUILD (from rev 1340483,
slowhttptest/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-11-01 22:42:01 UTC (rev 1340485)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Changaco <changaco ατ changaco δοτ net>
+
+pkgname=slowhttptest
+pkgver=1.8.2
+pkgrel=2
+pkgdesc='Highly configurable tool that simulates some Application Layer Denial
of Service (DoS) attacks'
+url='https://github.com/shekyan/slowhttptest'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'openssl' 'gcc-libs')
+source=(https://github.com/shekyan/slowhttptest/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('76fe1914862165196fc421a6456020e3aa70cf5370468d0f348574173e2e692a3361169a515ccd8012f6f63b056bbdbee1d3e02440cce6f456bd7b85dff839f8')
+b2sums=('eab6cb49ded764db6c322eba44016d19906cfd4149c10740b89dd15e69d13329f1c0987b5f5875a9b21651ea00f084729dcbc1661d226a56761b180511489977')
+
+prepare() {
+ cd ${pkgname}-${pkgver}
+ autoreconf -fiv
+}
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et: