wok view doxygen/receipt @ rev 2765

Add printer drivers: hplip, gutneprint, foomatic, pnm2ppa
author Rohit Joshi <jozee@slitaz.org>
date Sun Apr 26 16:04:40 2009 +0000 (2009-04-26)
parents f1bd6109d377
children 74a6a43bf614
line source
1 # SliTaz package receipt.
3 PACKAGE="doxygen"
4 VERSION="1.5.7.1"
5 CATEGORY="development"
6 SHORT_DESC="Source code documentation generator tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
9 BUILD_DEPENDS="perl graphviz"
10 WEB_SITE="http://www.stack.nl/~dimitri/doxygen/"
11 WGET_URL="ftp://ftp.stack.nl/pub/users/dimitri/$TARBALL"
12 #http://ftp.stack.nl/pub/users/dimitri/doxygen-1.5.7.1.src.tar.gz"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --shared --prefix /usr --docdir /usr/share/doc \
19 --install /usr/bin/install &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }