wok view apr-util/receipt @ rev 23249

updated nmon again (14g -> 16m)
author Hans-G?nter Theisgen
date Wed Mar 25 13:33:35 2020 +0100 (2020-03-25)
parents 617dbdeb6f7e
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="apr-util"
4 VERSION="1.6.1"
5 CATEGORY="development"
6 SHORT_DESC="APR Library Utilities."
7 MAINTAINER="lehswe@gmail.com"
8 LICENSE="Apache"
9 WEB_SITE="https://apr.apache.org"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://www.apache.org/dist/apr/$TARBALL"
14 DEPENDS="apr expat ncurses readline zlib"
15 BUILD_DEPENDS="apr-dev expat-dev gawk libmysqlclient
16 libpostgresqlclient libtool mysql-dev postgresql-dev
17 sqlite-dev unixODBC-dev util-linux-uuid-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --with-apr=$(apr-1-config --bindir) \
24 --with-pgsql=/usr \
25 --with-mysql \
26 --prefix=/usr \
27 --infodir=/usr/share/info \
28 --mandir=/usr/share/man \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib/apr-util-1
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 #cp -a $install/usr/lib/apr-util-1/*.so* $fs/usr/lib/apr-util-1
41 }