wok view doxygen/receipt @ rev 1508

Add doxygen
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 05 17:35:38 2008 +0000 (2008-10-05)
parents
children 3d99ecce2d4b
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 WEB_SITE="http://www.stack.nl/~dimitri/doxygen/"
10 WGET_URL="ftp://ftp.stack.nl/pub/users/dimitri/$TARBALL"
11 #http://ftp.stack.nl/pub/users/dimitri/doxygen-1.5.7.1.src.tar.gz"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --shared --prefix /usr --docdir /usr/share/doc \
18 --install /usr/bin/install &&
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
27 cp -a $_pkg/usr/bin $fs/usr
28 }