wok view doxygen/receipt @ rev 16692

glibc-base: add more default locales (see glibc' gconv); remove timezone files (now in locale-* packages).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 23 05:07:32 2014 +0300 (2014-05-23)
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 }