wok view doxygen/receipt @ rev 22989

updated knot and knot-dev (2.5.2 -> 2.9.2)
author Hans-G?nter Theisgen
date Sun Mar 01 17:01:17 2020 +0100 (2020-03-01)
parents 845b3d3b0cf5
children ad8b9ff412d2
line source
1 # SliTaz package receipt.
3 PACKAGE="doxygen"
4 VERSION="1.8.17"
5 CATEGORY="development"
6 TAGS="language documentation"
7 SHORT_DESC="Source code documentation generator tool."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.doxygen.nl/"
12 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
13 WGET_URL="${WEB_SITE}files/$TARBALL"
15 DEPENDS="gcc83-lib-base"
16 BUILD_DEPENDS="bison cmake flex gcc83 python"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export CC=gcc-83
22 export CXX=g++-83
24 mkdir build
25 cd build
26 cmake -G "Unix Makefiles" .. &&
27 make -j 1 &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/bin
35 cp -a $install/usr/local/bin/* $fs/usr/bin
36 }