void-packages/srcpkgs/apr/template
q66 8e41df8389 apr: use __atomic instead of __sync for builtins for 64-bit atomics
This allows us to use libatomic on architectures without native
support, unlike __sync.
2020-01-11 18:50:59 +01:00

52 lines
1.5 KiB
Bash

# Template file for 'apr'
pkgname=apr
version=1.7.0
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="Orphaned <orphan@voidlinux.org>"
license="Apache-2.0"
homepage="http://apr.apache.org/"
distfiles="http://www.apache.org/dist/apr/apr-${version}.tar.bz2"
checksum=e2e148f0b2e99b8e5c6caa09f6d4fb4dd3e83f744aa72a952f94f5a14436f7ea
nocross="mutex_proc_pthread_methods undeclared, configure args need to be fixed"
# Do not redefine struct iovec in include/apr_want.h
CFLAGS="-DAPR_IOVEC_DEFINED=1"
# Can't run test programs when cross compiling
if [ "$CROSS_BUILD" ]; then
configure_args+=" apr_cv_process_shared_works=yes"
configure_args+=" apr_cv_mutex_robust_shared=yes"
fi
case "$XBPS_TARGET_MACHINE" in
ppc64*) ;;
ppc*|armv[56]*|mips*)
makedepends+=" libatomic-devel"
LDFLAGS="-latomic"
;;
esac
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
}
}