wok rev 24499
updated doxygen (1.8.17 -> 1.9.3)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 19 17:03:18 2022 +0100 (2022-02-19) |
parents | 1c049ccf6c26 |
children | d7522d21c4d3 |
files | doxygen/description.txt doxygen/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/doxygen/description.txt Sat Feb 19 17:03:18 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +Doxygen is the de facto standard tool for generating documentation 1.5 +from annotated C++ sources, but it also supports other popular 1.6 +programming languages such as C, Objective-C, C#, PHP, Java, Python, 1.7 +IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL 1.8 +and to some extent D.
2.1 --- a/doxygen/receipt Sat Feb 19 16:47:19 2022 +0100 2.2 +++ b/doxygen/receipt Sat Feb 19 17:03:18 2022 +0100 2.3 @@ -1,13 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="doxygen" 2.7 -VERSION="1.8.17" 2.8 +VERSION="1.9.3" 2.9 CATEGORY="development" 2.10 TAGS="language documentation" 2.11 SHORT_DESC="Source code documentation generator tool." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="GPL2" 2.14 -WEB_SITE="http://www.doxygen.nl/" 2.15 +WEB_SITE="https://www.doxygen.nl/" 2.16 2.17 TARBALL="$PACKAGE-$VERSION.src.tar.gz" 2.18 WGET_URL="${WEB_SITE}files/$TARBALL" 2.19 @@ -28,16 +28,17 @@ 2.20 export CC=gcc-83 2.21 export CXX=g++-83 2.22 2.23 - mkdir build 2.24 - cd build 2.25 - cmake -G "Unix Makefiles" .. && 2.26 - make -j 1 && 2.27 - make DESTDIR=$DESTDIR install 2.28 + mkdir _build && 2.29 + cd _build && 2.30 + cmake .. \ 2.31 + -G "Unix Makefiles" && 2.32 + make && 2.33 + make install DESTDIR=$DESTDIR 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr/bin 2.40 - cp -a $install/usr/local/bin/* $fs/usr/bin 2.41 + mkdir -p $fs/usr 2.42 + cp -a $install/usr/local/bin $fs/usr 2.43 }