wok-current annotate 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
rev   line source
pascal@1508 1 # SliTaz package receipt.
pascal@1508 2
pascal@1508 3 PACKAGE="doxygen"
shann@25629 4 VERSION="1.8.13"
pascal@1508 5 CATEGORY="development"
Hans-G?nter@20851 6 TAGS="language documentation"
pascal@1508 7 SHORT_DESC="Source code documentation generator tool."
pascal@1508 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 9 LICENSE="GPL2"
pascal@24893 10 WEB_SITE="https://github.com/doxygen/doxygen/"
Hans-G?nter@20851 11
pascal@1508 12 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
pascal@25021 13 WGET_URL="${WEB_SITE}archive/Release_${VERSION//./_}.tar.gz"
jozee@4934 14
shann@25629 15 DEPENDS="gcc-lib-base"
shann@25629 16 BUILD_DEPENDS="bison cmake flex gcc python"
pascal@1508 17
pascal@24433 18 # What is the latest version available today?
pascal@24433 19 current_version()
pascal@24433 20 {
pascal@24433 21 wget -O - https://github.com/doxygen/doxygen/tags 2>/dev/null | \
pascal@24433 22 sed '/archive.*tar/!d;s|.*/Release_\(.*\).tar.*|\1|;s|_|.|g;q'
pascal@24433 23 }
pascal@24433 24
pascal@1508 25 # Rules to configure and make the package.
pascal@1508 26 compile_rules()
pascal@1508 27 {
Hans-G?nter@24499 28 mkdir _build &&
Hans-G?nter@24499 29 cd _build &&
Hans-G?nter@24499 30 cmake .. \
Hans-G?nter@24499 31 -G "Unix Makefiles" &&
Hans-G?nter@24499 32 make &&
Hans-G?nter@24499 33 make install DESTDIR=$DESTDIR
pascal@1508 34 }
pascal@1508 35
pascal@1508 36 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1508 37 genpkg_rules()
pascal@1508 38 {
Hans-G?nter@24499 39 mkdir -p $fs/usr
Hans-G?nter@24499 40 cp -a $install/usr/local/bin $fs/usr
pascal@1508 41 }