aboutsummaryrefslogtreecommitdiffstats
path: root/main/apr-util/APKBUILD
blob: 265e51151a3722dd6ea734d28b880ecb8db162be (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=apr-util
pkgver=1.6.1
pkgrel=11
pkgdesc="The Apache Portable Runtime Utility Library"
url="http://apr.apache.org/"
arch="all"
license="Apache-2.0"
subpackages="$pkgname-dev $pkgname-dbd_pgsql $pkgname-dbd_mysql
	$pkgname-dbd_sqlite3 $pkgname-ldap"
depends_dev="expat-dev openldap-dev sqlite-dev libpq-dev
	openssl1.1-compat-dev mariadb-dev"
makedepends="$depends_dev apr-dev bash chrpath openssl"
source="https://www.apache.org/dist/apr/apr-util-$pkgver.tar.bz2
	musl-fix-testsuite.patch"

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--with-apr=/usr \
		--with-ldap \
		--with-pgsql \
		--with-mysql \
		--with-sqlite3 \
		--with-crypto \
		--with-openssl \
		--without-sqlite2 \
		--without-berkeley-db \
		--with-dbm=ndbm
	make
}

check() {
	make -j1 check
}

package() {
	make DESTDIR="$pkgdir" install
	rm "$pkgdir"/usr/lib/*.exp
	chrpath -d "$pkgdir"/usr/lib/*.so.*
}

_mv_mod() {
	pkgdesc="The Apache Portable Runtime Utility Library - $2 driver"
	depends=
	local _moddir="usr/lib/apr-util-1"
	mkdir -p "$subpkgdir"/$_moddir
	mv "$pkgdir"/$_moddir/apr_$1*.so "$subpkgdir"/$_moddir/
}

dbd_pgsql() { _mv_mod dbd_pgsql "PostgreSQL"; }
dbd_mysql() { _mv_mod dbd_mysql "MySQL"; }
dbd_sqlite3() { _mv_mod dbd_sqlite "SQLite3"; }
ldap() { _mv_mod ldap "LDAP"; }

sha512sums="40eff8a37c0634f7fdddd6ca5e596b38de15fd10767a34c30bbe49c632816e8f3e1e230678034f578dd5816a94f246fb5dfdf48d644829af13bf28de3225205d  apr-util-1.6.1.tar.bz2
4672c55bbe78a401483dd21f29dd1f92d70887191f3d4945a616223c18e39e051609a3b52a5547a9dbcc54e315cf5866e5dfb5ef9507c3914e9d74a67e75a00e  musl-fix-testsuite.patch"