wok diff sarg/receipt @ rev 4519
xine: dont use external ffmpeg
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Nov 27 17:10:14 2009 +0100 (2009-11-27) |
parents | |
children | 083f2c3ff6c7 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/sarg/receipt Fri Nov 27 17:10:14 2009 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="sarg" 1.7 +VERSION="2.2.5" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="Squid Analysis Report Generator." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://$PACKAGE.sourceforge.net/" 1.13 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.14 + 1.15 +# Rules to configure and make the package. 1.16 +compile_rules() 1.17 +{ 1.18 + cd $src 1.19 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.20 + --enable-sysconfdir=/etc/sarg --enable-htmldir=/var/www \ 1.21 + --mandir=/usr/share/man $CONFIGURE_ARGS && 1.22 + make || return 1 1.23 + sed -e "s|/usr/bin|$PWD/_pkg/usr/bin|" \ 1.24 + -e "s|/etc/sarg|$PWD/_pkg/etc/sarg|" \ 1.25 + -e "s|/var/www|$PWD/_pkg/var/www|" \ 1.26 + -e "s|/usr/local/man/man1|$PWD/_pkg/usr/man/man1|" \ 1.27 + < Makefile > Makefile.install 1.28 + mkdir -p $PWD/_pkg/usr/bin $PWD/_pkg/etc/sarg $PWD/_pkg/var/www \ 1.29 + $PWD/_pkg/usr/man/man1 1.30 + make -f Makefile.install install 1.31 +} 1.32 + 1.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.34 +genpkg_rules() 1.35 +{ 1.36 + mkdir -p $fs/usr 1.37 + cp -a $_pkg/var $fs 1.38 + cp -a $_pkg/etc $fs 1.39 + rm -rf $fs/etc/sarg/sarg-php 1.40 + cp -a $_pkg/usr/bin $fs/usr 1.41 +} 1.42 +