wok annotate doxygen/receipt @ rev 22982

kdelibs: modified WGET_URL
author Hans-G?nter Theisgen
date Sat Feb 29 17:42:51 2020 +0100 (2020-02-29)
parents 845b3d3b0cf5
children ad8b9ff412d2
rev   line source
pascal@1508 1 # SliTaz package receipt.
pascal@1508 2
pascal@1508 3 PACKAGE="doxygen"
Hans-G?nter@22739 4 VERSION="1.8.17"
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"
Hans-G?nter@20851 10 WEB_SITE="http://www.doxygen.nl/"
Hans-G?nter@20851 11
pascal@1508 12 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
Hans-G?nter@20851 13 WGET_URL="${WEB_SITE}files/$TARBALL"
jozee@4934 14
Hans-G?nter@22739 15 DEPENDS="gcc83-lib-base"
Hans-G?nter@22739 16 BUILD_DEPENDS="bison cmake flex gcc83 python"
pascal@1508 17
pascal@1508 18 # Rules to configure and make the package.
pascal@1508 19 compile_rules()
pascal@1508 20 {
Hans-G?nter@22739 21 export CC=gcc-83
Hans-G?nter@22739 22 export CXX=g++-83
Hans-G?nter@22739 23
Hans-G?nter@20851 24 mkdir build
Hans-G?nter@20851 25 cd build
Hans-G?nter@20851 26 cmake -G "Unix Makefiles" .. &&
Hans-G?nter@20851 27 make -j 1 &&
pascal@15579 28 make DESTDIR=$DESTDIR install
pascal@1508 29 }
pascal@1508 30
pascal@1508 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1508 32 genpkg_rules()
pascal@1508 33 {
Hans-G?nter@20851 34 mkdir -p $fs/usr/bin
Hans-G?nter@22739 35 cp -a $install/usr/local/bin/* $fs/usr/bin
pascal@1508 36 }