X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id A6A3E5C43DB for ; Sat, 25 Feb 2017 22:33:36 +0000 (GMT) Received: from piha.riseup.net (unknown [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 857101A2320 for ; Sat, 25 Feb 2017 22:33:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1488062015; bh=w8dJt7Tc8d5+E58RPy5WccdZG/kZ1PvR6z0lrB2kcz8=; h=To:From:Subject:Date:From; b=QejZK2kiC1mQpIoUcK7y4cwlFCTYo+XeeP1FnMMXPoxQTidAwWCWOtO4g5n2EwOOq FdBR3RqKgUVaREo3b7MnhLQZCsHMEpJEoSD8liMjoe1CBvoELuq+9iFNUV4YmJi/8J rjoD92qf4V7qYml0TqLp90ckUIKD5W0dbXx2XANI= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: roger.newman) with ESMTPSA id 288B91C0893 To: alpine-aports@lists.alpinelinux.org From: Roger Newman Subject: [alpine-aports] [PATCH] community/libecap: new aport Message-ID: Date: Sat, 25 Feb 2017 23:33:20 +0100 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit http://www.e-cap.org/ eCAP allows an HTTP proxy or an ICAP server, to outsource content analysis and adaptation to a loadable module --- community/libecap/APKBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 community/libecap/APKBUILD diff --git a/community/libecap/APKBUILD b/community/libecap/APKBUILD new file mode 100644 index 0000000000..296b04e8c0 --- /dev/null +++ b/community/libecap/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Roger Newman +# Maintainer: Roger Newman +pkgname=libecap +pkgver=1.0.0 +pkgrel=0 +pkgdesc="eCAP allows an HTTP proxy or an ICAP server, to outsource content analysis and adaptation to a loadable module" +url="http://www.e-cap.org/" +arch="all" +license="BSD" +depends="" +subpackages="$pkgname-dev" +source="http://www.measurement-factory.com/tmp/ecap/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done + update_config_sub || return 1 +} + +build() { + cd "$_builddir" + ./configure 'CXXFLAGS=-O2 -m64 -pipe' 'CFLAGS=-O2 -m64 -pipe' \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --libdir=/lib \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make install-strip \ + libdir=/usr/lib \ + pkgconfigdir="/usr/lib/pkgconfig" \ + DESTDIR="$pkgdir" || return 1 +} + +sha512sums="7d34b5a9b6843d6b09efc4fa390c7a2d3dda7a2ae5e82d5021295e436ca9afb7c1f70bc6f25a68e4c430fb6e33ee9f602655c9c830fccd46a8f554774813b452 libecap-1.0.0.tar.gz" -- 2.11.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---