X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id BAE1EDC00FF for ; Sun, 10 Jan 2016 15:44:16 +0000 (UTC) Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 5A588DC001E for ; Sun, 10 Jan 2016 15:44:16 +0000 (UTC) Received: by mail-wm0-f43.google.com with SMTP id b14so234986212wmb.1 for ; Sun, 10 Jan 2016 07:44:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=6WHZzhPPccagMK7Ta53CPnbN6P/u0/HPN3YW7GrZg40=; b=zZWgvwtlxThknAIc0yzOU97yk9SSpgELXj+RDhXF9O6IQGOMagnaFZsBIUEHL9oYd4 wuJV30BxTZeRGzeZv6Wt6QIcOHnLI9k61BrUzRo9nAx691mawTRzvAWUi7s/Pf0NsFLn yYzH2bmMPZO00I5ORf8/YP3pG/rf7BCgt3oMjOg6Oo8RCZsOaVMiCiDJo7YhdYq//28e lNb8grxv2NKk90i7fnq/YPERtu0NpwvxOPVTzcdCZFXmBic1n7I0ceSxK8CalVX//13V FsTomfoXY/BuJWWaqywtEb6r823yFIjS0M8eOPlKOQH4HTMWMSPgNcuJLdIGwsUNzAoX G1cw== X-Received: by 10.194.134.134 with SMTP id pk6mr13656419wjb.176.1452440654931; Sun, 10 Jan 2016 07:44:14 -0800 (PST) Received: from localhost ([66.201.62.254]) by smtp.gmail.com with ESMTPSA id v82sm8695952wmv.12.2016.01.10.07.44.13 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 10 Jan 2016 07:44:14 -0800 (PST) From: Corentin Henry To: alpine-aports@lists.alpinelinux.org Cc: Corentin Henry Subject: [alpine-aports] [PATCH] testing/httperf: new aport Date: Sun, 10 Jan 2016 15:30:41 +0000 Message-Id: <1452439841-2210-1-git-send-email-corentinhenry@gmail.com> X-Mailer: git-send-email 2.7.0 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://httperf.googlecode.com/files/httperf-0.9.0.tar.gz An HTTP load generator --- testing/httperf/APKBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 testing/httperf/APKBUILD diff --git a/testing/httperf/APKBUILD b/testing/httperf/APKBUILD new file mode 100644 index 0000000..4b494bb --- /dev/null +++ b/testing/httperf/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: +# Maintainer: Corentin Henry +pkgname=httperf +pkgver=0.9.0 +pkgrel=0 +pkgdesc="A tool for measuring web server performance." +url="https://github.com/httperf/httperf" +arch="x86_64" +license="GPL2" +depends="openssl" +depends_dev="" +makedepends="openssl-dev" +install="" +subpackages="$pkgname-doc" +source="http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz" + +_builddir=$srcdir/$pkgname-$pkgver + +build() { + cd "$_builddir" + cd $pkgname-$pkgver + export CPPFLAGS="" + export LDFLAGS="" + ./configure --prefix=/usr + make +} + +package() { + cd $_builddir/src + make DESTDIR=$pkgdir install +} + +doc() { + default_doc + cd $_builddir/man + gzip -c httperf.1 > httperf.1.gz + install -Dm644 httperf.1.gz "$subpkgdir"/usr/share/doc/$pkgname/httperf.1.gz +} + +md5sums="2968c36b9ecf3d98fc1f2c1c9c0d9341 httperf-0.9.0.tar.gz" +sha256sums="e1a0bf56bcb746c04674c47b6cfa531fad24e45e9c6de02aea0d1c5f85a2bf1c httperf-0.9.0.tar.gz" +sha512sums="58ea6a3b8a82181a89e5df22fdf18d5be8c7b533c404108702cc03fc727fb1599a43e620d83d41630f8a951d80e48ed99d0c3dd8469ee1fc7626449b777971e1 httperf-0.9.0.tar.gz" -- 2.7.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---