wok view doxygen/receipt @ rev 9921

sshproxy: fix deps/bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 17 23:13:38 2011 +0200 (2011-05-17)
parents b6b2dcec29f8
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="doxygen"
4 VERSION="1.7.4"
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 flex"
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 }