wok view doxygen/receipt @ rev 24554

updated flac and flac-dev again (1.3.3 -> 1.3.4)
author Hans-G?nter Theisgen
date Fri Feb 25 11:25:23 2022 +0100 (2022-02-25)
parents ad8b9ff412d2
children eec3edc6ef52
line source
1 # SliTaz package receipt.
3 PACKAGE="doxygen"
4 VERSION="1.9.3"
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="https://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 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://github.com/doxygen/doxygen/tags 2>/dev/null | \
22 sed '/archive.*tar/!d;s|.*/Release_\(.*\).tar.*|\1|;s|_|.|g;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 export CC=gcc-83
29 export CXX=g++-83
31 mkdir _build &&
32 cd _build &&
33 cmake .. \
34 -G "Unix Makefiles" &&
35 make &&
36 make install DESTDIR=$DESTDIR
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/usr
43 cp -a $install/usr/local/bin $fs/usr
44 }