# SliTaz package receipt. PACKAGE="catfish" VERSION="0.3.2" CATEGORY="utilities" SHORT_DESC="Catfish is a versatile file searching tool." MAINTAINER="devl547@gmail.com" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.twotoasts.de/" WGET_URL="http://www.twotoasts.de/media/catfish/$TARBALL" BUILD_DEPENDS="pygtk-dev libglade-dev" DEPENDS="pygtk libglade python-xdg" # Rules to configure and make the package. compile_rules() { cd $src ./configure --prefix=/usr && make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share/catfish mkdir $fs/usr/share cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/share/catfish $fs/usr/share cp -a $_pkg/usr/share/icons $fs/usr/share cp -a $_pkg/usr/share/applications $fs/usr/share rm -f $fs/usr/share/catfish/catfish.svg $fs/usr/share/catfish/locale ln -s ../icons/hicolor/scalable/apps/catfish.svg $fs/usr/share/catfish/catfish.svg ln -s ../locale $fs/usr/share/catfish/locale }