wok-next view apr/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 7923eafc703e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="apr"
4 VERSION="1.7.0"
5 CATEGORY="misc"
6 SHORT_DESC="Apache Portable Runtime Library"
7 MAINTAINER="maintainer@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_SHA256="e2e148f0b2e99b8e5c6caa09f6d4fb4dd3e83f744aa72a952f94f5a14436f7ea"
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 {
29 # should define prefix
30 ./configure \
31 --prefix=/usr \
32 --enable-nonportable-atomics \
33 --disable-static \
34 --with-devrandom \
35 --with-installbuilddir=/usr/share/apr-1/build \
36 $CONFIGURE_ARGS &&
37 fix libtool &&
38 make &&
39 make install
40 }