wok annotate electricsheep/receipt @ rev 12148

squidclamav: Fix config. Remove unwanted file
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Mar 15 00:08:22 2012 +0100 (2012-03-15)
parents 8e4c74abdf74
children 01cef52b1d5b
rev   line source
gokhlayeh@6998 1 # SliTaz package receipt.
gokhlayeh@6998 2
gokhlayeh@6998 3 PACKAGE="electricsheep"
gokhlayeh@6998 4 VERSION="2.7b12"
gokhlayeh@6998 5 CATEGORY="graphics"
samuel_trassare@12004 6 SHORT_DESC="Distributed screen-saver that renders morphing abstract animations"
gokhlayeh@7034 7 MAINTAINER="gokhlayeh@slitaz.org"
gokhlayeh@6998 8 DEPENDS="curl expat flam3 ffmpeg mplayer libglade gtk+"
gokhlayeh@6998 9 BUILD_DEPENDS="curl-dev expat-dev ffmpeg-dev libglade-dev gtk+-dev flam3-dev"
gokhlayeh@6998 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
gokhlayeh@6998 11 WEB_SITE="http://community.electricsheep.org/"
samuel_trassare@12004 12 WGET_URL="http://147.52.159.12/mirrors/ftp.kernel.org/pub/dist/vectorlinux/VL64-7.0/sourceAbs/$PACKAGE/$TARBALL"
gokhlayeh@6998 13
gokhlayeh@6998 14 # Rules to configure and make the package.
gokhlayeh@6998 15 compile_rules()
gokhlayeh@6998 16 {
gokhlayeh@6998 17 cd $src
gokhlayeh@6998 18 ./configure \
gokhlayeh@6998 19 --prefix=/usr \
gokhlayeh@6998 20 --infodir=/usr/share/info \
gokhlayeh@6998 21 --mandir=/usr/share/man \
gokhlayeh@6998 22 $CONFIGURE_ARGS &&
gokhlayeh@11574 23 make $MAKEFLAGS && make DESTDIR=$PWD/_pkg install
gokhlayeh@6998 24 }
gokhlayeh@6998 25
gokhlayeh@6998 26 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6998 27 genpkg_rules()
gokhlayeh@6998 28 {
gokhlayeh@6998 29 cp -a $_pkg/* $fs/
gokhlayeh@6998 30 rm -r $fs/usr/share/man
gokhlayeh@6998 31 rm $fs/usr/share/electricsheep/electricsheep-wait.avi
gokhlayeh@6998 32 }
gokhlayeh@6998 33