44 lines
1.2 KiB
Text
44 lines
1.2 KiB
Text
# Template file for 'apr'
|
|
pkgname=apr
|
|
version=1.4.8
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-devrandom=/dev/urandom --with-installbuilddir=/usr/share/apr-1/build
|
|
ac_cv_file__dev_zero=yes ac_cv_func_setpgrp_void=yes apr_cv_tcp_nodelay_with_cork=yes"
|
|
makedepends="libuuid-devel"
|
|
short_desc="Apache Portable Runtime Library"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://apr.apache.org/"
|
|
license="Apache-2.0"
|
|
distfiles="http://www.apache.org/dist/apr/apr-$version.tar.bz2"
|
|
checksum=61b8d2f8d321c6365ee3d71d0bb41f3a89c44da6124cc5b407a3b8319d660421
|
|
long_desc="
|
|
APR is Apache's Portable Runtime Library, designed to be a support library
|
|
that provides a predictable and consistent interface to underlying
|
|
platform-specific implementations."
|
|
|
|
if [ "$CROSS_BUILD" -a "$XBPS_TARGET_MACHINE" != "x86_64" ]; then
|
|
configure_args+=" ac_cv_sizeof_struct_iovec=8"
|
|
else
|
|
configure_args+=" ac_cv_sizeof_struct_iovec=16"
|
|
fi
|
|
|
|
apr-devel_package() {
|
|
depends="libuuid-devel apr>=${version}"
|
|
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
|
|
}
|
|
}
|
|
|
|
apr_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|