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 2E8FEDC00FF for ; Sun, 10 Jan 2016 15:32:57 +0000 (UTC) Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id CE231DC001E for ; Sun, 10 Jan 2016 15:32:56 +0000 (UTC) Received: by mail-wm0-f51.google.com with SMTP id b14so234763455wmb.1 for ; Sun, 10 Jan 2016 07:32:56 -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=bPCWlrLBG80EafUSTu9+v7zRhuPGNvQDUDK+1mg4IS2omILfpKk3WaDiYcldklLjcS w1+ADxD1L9vyvDmNk/kKp+jAO4QIp/tW8wUV6nu67rkMFvn2kXnB8uGR4lKSK3csULGG 232N+aSic8yemWc8LNAQGpQjH74mhG1Q8r2rfpo1HjC5ObxcFYEp0INUUoXB5lR2XR78 405LP6DxIhBVL9vB87I7w8dXI40UmXwaJ0Hb3AYoNNTbVnhyNZwAIJ32AGsALMbuYcRT pEqRTNfE+dXylDkGlb25blc94VlBi2gkTaE3Ag8M1eEyOrA5zNaUXTgpYWBhTsSDRFAA 3Zyg== X-Received: by 10.28.45.207 with SMTP id t198mr9394170wmt.32.1452439480469; Sun, 10 Jan 2016 07:24:40 -0800 (PST) Received: from localhost ([66.201.62.254]) by smtp.gmail.com with ESMTPSA id o7sm13045742wjf.45.2016.01.10.07.24.38 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 10 Jan 2016 07:24:39 -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:10:48 +0000 Message-Id: <1452438648-2164-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 ---