wok view tiff/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 53da4d85cdb3
children de49f29b101e
line source
1 # SliTaz package receipt.
3 PACKAGE="tiff"
4 VERSION="4.0.2"
5 CATEGORY="x-window"
6 SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="jpeg zlib gcc-lib-base"
10 BUILD_DEPENDS="jpeg-dev zlib-dev"
11 WEB_SITE="http://www.remotesensing.org/libtiff/"
12 WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }