aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libecap/APKBUILD
blob: 1a910aee6690b18382f0558f00cd92756e4700fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: Roger Newman <roger.newman@riseup.net>
# Maintainer: Roger Newman <roger.newman@riseup.net>
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"