wok view webalizer/receipt @ rev 1829

alsa-utils: back to 1.0.17 (1.0.18 needs xmlto/docbook), we see after release
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 09 20:42:29 2008 +0100 (2008-12-09)
parents
children 8ab0243e5a22
line source
1 # SliTaz package receipt.
3 PACKAGE="webalizer"
4 VERSION="2.20-01"
5 CATEGORY="network"
6 SHORT_DESC="Web server log file analysis program."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
9 WEB_SITE="http://www.webalizer.com/"
10 WGET_URL="ftp://ftp.mrunix.net/pub/$PACKAGE/$TARBALL"
11 DEPENDS="libgd zlib db"
12 BUILD_DEPENDS="libgd libgd-dev zlib-dev db db-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --sysconfdir=/etc \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr $fs/etc
28 cp -a $_pkg/etc/webalizer.conf.sample $fs/etc/webalizer.conf
29 cp -a $_pkg/usr/bin $fs/usr
30 }