wok-undigest annotate catfish/receipt @ rev 174

bmpanel*: moved to wok
author Rohit Joshi <jozee@slitaz.org>
date Tue Oct 19 20:59:38 2010 -0400 (2010-10-19)
parents
children
rev   line source
erjo@26 1 # SliTaz package receipt.
erjo@26 2
erjo@26 3 PACKAGE="catfish"
erjo@26 4 VERSION="0.3.2"
erjo@26 5 CATEGORY="utilities"
erjo@26 6 SHORT_DESC="Catfish is a versatile file searching tool."
erjo@26 7 MAINTAINER="devl547@gmail.com"
erjo@26 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@26 9 WEB_SITE="http://www.twotoasts.de/"
erjo@26 10 WGET_URL="http://www.twotoasts.de/media/catfish/$TARBALL"
erjo@26 11 BUILD_DEPENDS="pygtk-dev libglade-dev"
erjo@26 12 DEPENDS="pygtk libglade python-xdg"
erjo@26 13
erjo@26 14 # Rules to configure and make the package.
erjo@26 15 compile_rules()
erjo@26 16 {
erjo@26 17 cd $src
erjo@26 18 ./configure --prefix=/usr &&
erjo@26 19 make &&
erjo@26 20 make DESTDIR=$PWD/_pkg install
erjo@26 21 }
erjo@26 22
erjo@26 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@26 24 genpkg_rules()
erjo@26 25 {
erjo@26 26 mkdir -p $fs/usr/share/catfish
erjo@26 27 mkdir $fs/usr/share
erjo@26 28
erjo@26 29 cp -a $_pkg/usr/bin $fs/usr
erjo@26 30 cp -a $_pkg/usr/share/catfish $fs/usr/share
erjo@26 31 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@26 32 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@26 33 }