wok annotate doxygen/receipt @ rev 21136

link cream with libjpeg-9c
author Hans-G?nter Theisgen
date Thu Mar 21 16:56:04 2019 +0100 (2019-03-21)
parents f6af821600e6
children b537f0bd32fb
rev   line source
pascal@1508 1 # SliTaz package receipt.
pascal@1508 2
pascal@1508 3 PACKAGE="doxygen"
Hans-G?nter@20851 4 VERSION="1.8.15"
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@20851 15 BUILD_DEPENDS="bison cmake flex python"
pascal@1508 16
pascal@1508 17 # Rules to configure and make the package.
pascal@1508 18 compile_rules()
pascal@1508 19 {
Hans-G?nter@20851 20 mkdir build
Hans-G?nter@20851 21 cd build
Hans-G?nter@20851 22 cmake -G "Unix Makefiles" .. &&
Hans-G?nter@20851 23 make -j 1 &&
pascal@15579 24 make DESTDIR=$DESTDIR install
pascal@1508 25 }
pascal@1508 26
pascal@1508 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1508 28 genpkg_rules()
pascal@1508 29 {
Hans-G?nter@20851 30 mkdir -p $fs/usr/bin
Hans-G?nter@20851 31 cp -a $install/usr/local/bin/* $fs/usr/bin
pascal@1508 32 }