wok view apr/receipt @ rev 8894

Made lighttpd and lighttpd-ssl only backup vhosts.conf and lighttpd.conf in /etc/lighttpd folder. Doesn't need to backup full /etc/lighttpd folder cause only those files would be affected.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 27 13:44:14 2011 +0000 (2011-02-27)
parents e02c446857a6
children ed226acb2345
line source
1 # SliTaz package receipt.
3 PACKAGE="apr"
4 VERSION="1.4.2"
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 }