wok view apr/receipt @ rev 5742

Up: strace (4.5.20)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Jun 27 09:29:34 2010 +0200 (2010-06-27)
parents 0588160a6878
children aa8b383fcb2b
line source
1 # SliTaz package receipt.
3 PACKAGE="apr"
4 VERSION="1.3.9"
5 CATEGORY="misc"
6 SHORT_DESC="Apache Portable Runtime Library"
7 MAINTAINER="lehswe@gmail.com"
8 DEPENDS="util-linux-ng-uuid"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://apr.apache.org"
11 WGET_URL="http://mir2.ovh.net/ftp.apache.org/dist/$PACKAGE/$TARBALL
12 http://apache.crihan.fr/dist/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --with-installbuilddir=/usr/share/apr-1/build \
20 --enable-nonportable-atomics \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.exp $fs/usr/lib
32 }