wok-current view doxygen/receipt @ rev 20821
updated deluge (1.3.6 -> 1.3.15)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Feb 19 14:13:56 2019 +0100 (2019-02-19) |
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 }