wok-next view apr/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents e19ff076dc63
children 7923eafc703e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="apr"
4 VERSION="1.6.5"
5 CATEGORY="misc"
6 SHORT_DESC="Apache Portable Runtime Library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="http://apr.apache.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/apr.html"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://archive.apache.org/dist/apr/$TARBALL"
14 TARBALL_SHA1="6fdedcd21de9da806d0a01769b8be7ba0c495145"
16 BUILD_DEPENDS="util-linux-uuid-dev"
17 SPLIT="$PACKAGE-dev"
19 COOKOPTS="skip-log-errors force-arch" # different apr-1-config, .h, .pc, .mk, libtool
21 COPY_std="*.so*"
22 COPY_dev="@dev build/ *.exp"
24 DEPENDS_std="util-linux-uuid"
25 DEPENDS_dev="$PACKAGE util-linux-uuid-dev"
27 compile_rules() {
28 # should define prefix
29 ./configure \
30 --prefix=/usr \
31 --disable-static \
32 --with-installbuilddir=/usr/share/apr-1/build \
33 --enable-nonportable-atomics \
34 --with-devrandom \
35 $CONFIGURE_ARGS &&
36 fix libtool &&
37 make &&
38 make install
39 }