wok-4.x annotate 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 |
rev | line source |
---|---|
pascal@1508 | 1 # SliTaz package receipt. |
pascal@1508 | 2 |
pascal@1508 | 3 PACKAGE="doxygen" |
pascal@1508 | 4 VERSION="1.5.7.1" |
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" |
pascal@1508 | 9 WEB_SITE="http://www.stack.nl/~dimitri/doxygen/" |
pascal@1508 | 10 WGET_URL="ftp://ftp.stack.nl/pub/users/dimitri/$TARBALL" |
pascal@1508 | 11 #http://ftp.stack.nl/pub/users/dimitri/doxygen-1.5.7.1.src.tar.gz" |
pascal@1508 | 12 |
pascal@1508 | 13 # Rules to configure and make the package. |
pascal@1508 | 14 compile_rules() |
pascal@1508 | 15 { |
pascal@1508 | 16 cd $src |
pascal@1508 | 17 ./configure --shared --prefix /usr --docdir /usr/share/doc \ |
pascal@1508 | 18 --install /usr/bin/install && |
pascal@1508 | 19 make && |
pascal@1508 | 20 make DESTDIR=$PWD/_pkg install |
pascal@1508 | 21 } |
pascal@1508 | 22 |
pascal@1508 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1508 | 24 genpkg_rules() |
pascal@1508 | 25 { |
pascal@1508 | 26 mkdir -p $fs/usr |
pascal@1508 | 27 cp -a $_pkg/usr/bin $fs/usr |
pascal@1508 | 28 } |
pascal@1508 | 29 |