wok-stable view cherokee/receipt @ rev 12465

Up e2fsprogs (1.44.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 04 18:42:23 2019 +0100 (2019-03-04)
parents 4de59d145d66
children
line source
1 # SliTaz package receipt.
3 PACKAGE="cherokee"
4 VERSION="1.2.101"
5 CATEGORY="network"
6 SHORT_DESC="A very fast, fiexible and easy to configure Web Server."
7 MAINTAINER="slaxemulator@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.cherokee-project.com/"
10 WGET_URL="http://www.cherokee-project.com/download/1.2/$VERSION/$TARBALL"
11 PROVIDE="lighttpd"
13 DEPENDS="pcre cyrus-sasl openssl python libmysqlclient libldap ffmpeg"
14 BUILD_DEPENDS="pcre-dev cyrus-sasl-dev openssl-dev openldap-dev python-dev pam-dev libmysqlclient ffmpeg-dev gettext autoconf automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 # Use subdirectory for logs
21 sed -i -r 's|(%localstatedir%/log)|\1/cherokee|' cherokee.conf.sample.pre
23 autoreconf -v
24 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
25 --with-wwwroot=/var/www/cherokee --disable-static \
26 --with-wwwuser=www --with-wwwgroup=www \
27 --enable-os-string="SliTaz" \
28 $CONFIGURE_ARGS &&
29 make && make DESTDIR=$DESTDIR install
30 install -D -m644 pam.d_cherokee $DESTDIR/etc/pam.d/$PACKAGE
31 chown -R www:www $DESTDIR/var/lib/$PACKAGE/graphs
32 python -m compileall $DESTDIR
33 python -O -m compileall $DESTDIR
34 mkdir -p $DESTDIR/var/log/$PACKAGE $DESTDIR/etc/logrotate.d
35 chown -R www:www $DESTDIR/var/log/$PACKAGE
36 cp -a $stuff/$PACKAGE.logrotate $DESTDIR/etc/logrotate.d/$PACKAGE
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/lib/cherokee $fs/usr/share $fs/etc/init.d
44 cp -a $install/usr/bin $fs/usr
45 cp -a $install/usr/sbin $fs/usr
46 cp -a $install/usr/lib/*.so* $fs/usr/lib
47 cp -a $install/usr/lib/cherokee/*.so* $fs/usr/lib/cherokee
48 cp -a $install/usr/share/cherokee $fs/usr/share
49 cp -a $install/var $fs
50 cp -a $install/etc $fs
51 cp -a $stuff/cherokee $fs/etc/init.d
52 }