# HG changeset patch # User Hans-G?nter Theisgen # Date 1550758649 -3600 # Node ID 845b3d3b0cf592c278e2f355af09f8a61f1ba3e1 # Parent 787eaaa930232b68a7aa4b4e3e02b01e8b0897ad updated doxygen (1.7.4 -> 1.8.15) diff -r 787eaaa93023 -r 845b3d3b0cf5 doxygen/receipt --- a/doxygen/receipt Thu Feb 21 14:37:00 2019 +0100 +++ b/doxygen/receipt Thu Feb 21 15:17:29 2019 +0100 @@ -1,31 +1,32 @@ # SliTaz package receipt. PACKAGE="doxygen" -VERSION="1.7.4" +VERSION="1.8.15" CATEGORY="development" +TAGS="language documentation" SHORT_DESC="Source code documentation generator tool." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://www.doxygen.nl/" + TARBALL="$PACKAGE-$VERSION.src.tar.gz" -WEB_SITE="http://www.stack.nl/~dimitri/doxygen/" -WGET_URL="ftp://ftp.stack.nl/pub/users/dimitri/$TARBALL" -TAGS="language documentation" +WGET_URL="${WEB_SITE}files/$TARBALL" -BUILD_DEPENDS="perl graphviz flex" +BUILD_DEPENDS="bison cmake flex python" # Rules to configure and make the package. compile_rules() { - sed -i 's|man/man1|share/&|' Makefile* - ./configure --shared --prefix /usr --docdir /usr/share/doc \ - --install /usr/bin/install && - make && + mkdir build + cd build + cmake -G "Unix Makefiles" .. && + make -j 1 && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + mkdir -p $fs/usr/bin + cp -a $install/usr/local/bin/* $fs/usr/bin }