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 DD8395C43E3 for ; Sat, 4 Mar 2017 16:21:33 +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 862581A1B27 for ; Sat, 4 Mar 2017 16:21:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1488644492; bh=iRdz5VX1g65WhGTuDiru5N1prOO+HI1I09YSOR6Eap0=; h=From:Subject:To:Date:From; b=FZA8TiV9hnip9IrB+x9l6PiW1Zg2S09RCFxKDrTB7poa+WkH6riJL212BJTXhxunG I7i1YNQswkyP+SUgbt5nlTR7vmPY4jaUXj3mRV+u/bm0AxFL6Y7UQgua9qBx3sabTW 6lm0+RfV9Nk4Ssb/wVj4yT9uYIpy1b1BELZn1QZ0= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: roger.newman) with ESMTPSA id 3360A1C02BD From: Roger Newman Subject: [alpine-aports] [PATCH v2] testing/libecap: new aport To: alpine-aports@lists.alpinelinux.org Message-ID: <73df5c22-95cc-3d92-7304-ef23952575c4@riseup.net> Date: Sat, 4 Mar 2017 17:21:27 +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/ API for implementing ICAP content analysis and adaptation --- testing/libecap/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/libecap/APKBUILD diff --git a/testing/libecap/APKBUILD b/testing/libecap/APKBUILD new file mode 100644 index 0000000000..dd9ec71816 --- /dev/null +++ b/testing/libecap/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Roger Newman +# Maintainer: Roger Newman +pkgname=libecap +pkgver=1.0.0 +pkgrel=0 +pkgdesc="API for implementing ICAP content analysis and adaptation" +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() { + cd "$_builddir" + default_prepare || return 1 + update_config_sub || return 1 +} + +build() { + cd "$_builddir" + ./configure \ + --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.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---