43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
# Template file for 'apr'
|
|
pkgname=apr
|
|
version=1.6.3
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--with-installbuilddir=/usr/share/apr-1/build"
|
|
makedepends="expat-devel libuuid-devel"
|
|
short_desc="Apache Portable Runtime Library"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://apr.apache.org/"
|
|
license="Apache-2.0"
|
|
distfiles="http://www.apache.org/dist/apr/apr-$version.tar.bz2"
|
|
checksum=131f06d16d7aabd097fa992a33eec2b6af3962f93e6d570a9bd4d85e95993172
|
|
|
|
# Do not redefine struct iovec in include/apr_want.h
|
|
CFLAGS="-DAPR_IOVEC_DEFINED=1"
|
|
|
|
# Can't run test programs when cross compiling
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
configure_args+=" apr_cv_process_shared_works=yes"
|
|
configure_args+=" apr_cv_mutex_robust_shared=yes"
|
|
fi
|
|
|
|
pre_build() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
sed -i "/LINK_PROG.*OBJECTS_gen_test_char/s|.*|\t${BUILD_CC} ${BUILD_CFLAGS} tools/gen_test_char.c -o tools/gen_test_char|" Makefile
|
|
fi
|
|
}
|
|
|
|
apr-devel_package() {
|
|
depends="libtool libuuid-devel apr>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/bin
|
|
vmove usr/share
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/lib/*.exp"
|
|
vmove usr/lib/pkgconfig
|
|
ln -sf /usr/bin/libtool ${PKGDESTDIR}/usr/share/apr-1/build/libtool
|
|
}
|
|
}
|