65 lines
1.5 KiB
Bash
65 lines
1.5 KiB
Bash
# Maintainer: Alexey Pavlov <alexpux@gmail.com>
|
|
|
|
pkgname=('apr' 'apr-devel')
|
|
pkgver=1.7.6
|
|
pkgrel=1
|
|
pkgdesc="The Apache Portable Runtime"
|
|
arch=('i686' 'x86_64')
|
|
url="https://apr.apache.org/"
|
|
msys2_references=(
|
|
"cpe: cpe:/a:apache:portable_runtime"
|
|
)
|
|
makedepends=('libxcrypt-devel' 'libuuid-devel' 'autotools' 'gcc')
|
|
options=('!libtool')
|
|
license=('spdx:Apache-2.0')
|
|
source=(https://archive.apache.org/dist/apr/apr-${pkgver}.tar.bz2)
|
|
sha256sums=('49030d92d2575da735791b496dc322f3ce5cff9494779ba8cc28c7f46c5deb32')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/apr-${pkgver}"
|
|
|
|
autoreconf -fi
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/apr-${pkgver}"
|
|
|
|
export MSYSTEM=CYGWIN
|
|
./configure \
|
|
--build=${CHOST} \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/apr/modules \
|
|
--datadir=/usr/share/apr \
|
|
ac_cv_header_windows_h=no \
|
|
ac_cv_header_winsock2_h=no
|
|
|
|
make
|
|
make DESTDIR="${srcdir}/dest" install
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}/apr-${pkgver}"
|
|
make -j1 check || true
|
|
}
|
|
|
|
package_apr() {
|
|
depends=('libxcrypt' 'libuuid')
|
|
groups=('libraries')
|
|
|
|
mkdir -p ${pkgdir}/usr/{bin,share}
|
|
cp -f ${srcdir}/dest/usr/bin/*.dll ${pkgdir}/usr/bin/
|
|
}
|
|
|
|
package_apr-devel() {
|
|
pkgdesc="Libapr headers and libraries"
|
|
groups=('development')
|
|
depends=("apr=${pkgver}" "libxcrypt-devel" "libuuid-devel")
|
|
options=('staticlibs')
|
|
|
|
mkdir -p ${pkgdir}/usr/{bin,share}
|
|
cp -f ${srcdir}/dest/usr/bin/*-config ${pkgdir}/usr/bin/
|
|
cp -rf ${srcdir}/dest/usr/include ${pkgdir}/usr/
|
|
cp -rf ${srcdir}/dest/usr/lib ${pkgdir}/usr/
|
|
cp -rf ${srcdir}/dest/usr/share/apr ${pkgdir}/usr/share/
|
|
}
|