wok view doxygen/receipt @ rev 4934

add/improve TAGS d* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 13:17:20 2010 +0000 (2010-02-16)
parents 3d99ecce2d4b
children b6b2dcec29f8
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 TAGS="language documentation"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --shared --prefix /usr --docdir /usr/share/doc \
20 --install /usr/bin/install &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }