wok annotate 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
rev   line source
pascal@1508 1 # SliTaz package receipt.
pascal@1508 2
pascal@1508 3 PACKAGE="doxygen"
slaxemulator@9409 4 VERSION="1.7.4"
pascal@1508 5 CATEGORY="development"
pascal@1508 6 SHORT_DESC="Source code documentation generator tool."
pascal@1508 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1508 8 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
gokhlayeh@7975 9 BUILD_DEPENDS="perl graphviz flex"
pascal@1508 10 WEB_SITE="http://www.stack.nl/~dimitri/doxygen/"
pascal@1508 11 WGET_URL="ftp://ftp.stack.nl/pub/users/dimitri/$TARBALL"
jozee@4934 12 TAGS="language documentation"
jozee@4934 13
pascal@1508 14
pascal@1508 15 # Rules to configure and make the package.
pascal@1508 16 compile_rules()
pascal@1508 17 {
pascal@1508 18 cd $src
pascal@1508 19 ./configure --shared --prefix /usr --docdir /usr/share/doc \
pascal@1508 20 --install /usr/bin/install &&
pascal@1508 21 make &&
pascal@1508 22 make DESTDIR=$PWD/_pkg install
pascal@1508 23 }
pascal@1508 24
pascal@1508 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1508 26 genpkg_rules()
pascal@1508 27 {
pascal@1508 28 mkdir -p $fs/usr
pascal@1508 29 cp -a $_pkg/usr/bin $fs/usr
pascal@1508 30 }
pascal@1508 31