wok view doxygen/receipt @ rev 19935

Up grub2 (2.02)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 30 10:12:31 2017 +0200 (2017-04-30)
parents eb8067417980
children 845b3d3b0cf5
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 sed -i 's|man/man1|share/&|' Makefile*
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 }