wok-current view doxygen/receipt @ rev 25692

Up gnutls CVE-2024-28834, CVE-2024-28835, Up python3 CVE-2023-52425, CVE-2024-0450, CVE-2023-6597
author Stanislas Leduc <shann@slitaz.org>
date Fri Mar 22 16:28:42 2024 +0000 (3 months ago)
parents 1be16cc1cd50
children
line source
1 # SliTaz package receipt.
3 PACKAGE="doxygen"
4 VERSION="1.8.13"
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://github.com/doxygen/doxygen/"
12 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
13 WGET_URL="${WEB_SITE}archive/Release_${VERSION//./_}.tar.gz"
15 DEPENDS="gcc-lib-base"
16 BUILD_DEPENDS="bison cmake flex gcc 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 mkdir _build &&
29 cd _build &&
30 cmake .. \
31 -G "Unix Makefiles" &&
32 make &&
33 make install DESTDIR=$DESTDIR
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr
40 cp -a $install/usr/local/bin $fs/usr
41 }