wok annotate doxygen/receipt @ rev 16027

Add to ARM: libnl, wpa_supplicant, wput
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 08 07:29:53 2014 +0100 (2014-03-08)
parents 7a4a1829e9f7
children f6af821600e6
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@15579 8 LICENSE="GPL2"
pascal@1508 9 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
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@15579 14 BUILD_DEPENDS="perl graphviz flex"
pascal@1508 15
pascal@1508 16 # Rules to configure and make the package.
pascal@1508 17 compile_rules()
pascal@1508 18 {
pascal@1508 19 cd $src
pascal@1508 20 ./configure --shared --prefix /usr --docdir /usr/share/doc \
pascal@1508 21 --install /usr/bin/install &&
pascal@1508 22 make &&
pascal@15579 23 make DESTDIR=$DESTDIR install
pascal@1508 24 }
pascal@1508 25
pascal@1508 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1508 27 genpkg_rules()
pascal@1508 28 {
pascal@1508 29 mkdir -p $fs/usr
pascal@15579 30 cp -a $install/usr/bin $fs/usr
pascal@1508 31 }
pascal@1508 32