mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=apr
|
|
pkgver=1.6.3
|
|
pkgrel=1
|
|
pkgdesc="The Apache Portable Runtime"
|
|
url="http://apr.apache.org/"
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
depends=""
|
|
depends_dev="util-linux-dev bash"
|
|
makedepends="$depends_dev"
|
|
subpackages="$pkgname-dev"
|
|
source="http://www.apache.org/dist/$pkgname/$pkgname-$pkgver.tar.bz2
|
|
apr-1.6.2-dont-test-dlclose.patch
|
|
"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--datadir=/usr/share \
|
|
--enable-nonportable-atomics \
|
|
--with-devrandom=/dev/urandom
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make -j1 check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# basicly everything thats not a *.so* file belongs to the -dev package
|
|
# we override the pre-defined func.
|
|
dev() {
|
|
local i
|
|
depends="$pkgname $depends_dev"
|
|
mkdir -p "$subpkgdir"
|
|
mv "$pkgdir"/* "$subpkgdir"/
|
|
mkdir -p "$pkgdir"/usr/lib
|
|
mv "$subpkgdir"/usr/lib/*.so* "$pkgdir"/usr/lib/
|
|
return 0
|
|
}
|
|
|
|
sha512sums="f6b8679ae7fafff793c825c78775c84a646267c441710a50664589850e13148719b4eab48ab6e7c95b7aed085cff831115687434a7b160dcc2faa0eae63ac996 apr-1.6.3.tar.bz2
|
|
9fb931e45f30fbe68af56849dfca148c09cdf85e300af14fb259cbd43470113288680bdb21189d4cf13f5ce95f8d28666822535e017e64ace5324339ab50cbef apr-1.6.2-dont-test-dlclose.patch"
|