wok view doxygen/receipt @ rev 2806

update to 4.5.0
author Allan Pinto <allan316@gmail.com>
date Wed Apr 29 09:38:17 2009 +0000 (2009-04-29)
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 }