wok view catfish/receipt @ rev 13688

Add mdocml (very light man formatter), mdocml-extra, mdocml-cgi, mdocml-man, mdocml-dev. Now we can use 'mandoc /usr/share/man/man1/xterm.1 | less' to see well formatted manpage, but we still need 'man' wrapper to mandoc to search and page man pages. Cgi and other packages yet not tested at all.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Dec 09 17:07:54 2012 +0000 (2012-12-09)
parents
children 427b650440cd
line source
1 # SliTaz package receipt.
3 PACKAGE="catfish"
4 VERSION="0.3.2"
5 CATEGORY="utilities"
6 SHORT_DESC="Catfish is a versatile file searching tool."
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.twotoasts.de/"
10 WGET_URL="http://www.twotoasts.de/media/catfish/$TARBALL"
11 BUILD_DEPENDS="pygtk-dev libglade-dev"
12 DEPENDS="pygtk libglade python-xdg"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/catfish
27 mkdir $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/catfish $fs/usr/share
31 cp -a $_pkg/usr/share/icons $fs/usr/share
32 cp -a $_pkg/usr/share/applications $fs/usr/share
33 }