wok view 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
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
10 WEB_SITE="http://www.stack.nl/~dimitri/doxygen/"
11 WGET_URL="ftp://ftp.stack.nl/pub/users/dimitri/$TARBALL"
12 TAGS="language documentation"
14 BUILD_DEPENDS="perl graphviz flex"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --shared --prefix /usr --docdir /usr/share/doc \
21 --install /usr/bin/install &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }