wok diff doxygen/receipt @ rev 21143

clamtk: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 27 15:24:38 2019 +0100 (2019-03-27)
parents f6af821600e6
children b537f0bd32fb
line diff
     1.1 --- a/doxygen/receipt	Wed Jul 06 10:06:06 2016 +0200
     1.2 +++ b/doxygen/receipt	Wed Mar 27 15:24:38 2019 +0100
     1.3 @@ -1,31 +1,32 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="doxygen"
     1.7 -VERSION="1.7.4"
     1.8 +VERSION="1.8.15"
     1.9  CATEGORY="development"
    1.10 +TAGS="language documentation"
    1.11  SHORT_DESC="Source code documentation generator tool."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="http://www.doxygen.nl/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.src.tar.gz"
    1.17 -WEB_SITE="http://www.stack.nl/~dimitri/doxygen/"
    1.18 -WGET_URL="ftp://ftp.stack.nl/pub/users/dimitri/$TARBALL"
    1.19 -TAGS="language documentation"
    1.20 +WGET_URL="${WEB_SITE}files/$TARBALL"
    1.21  
    1.22 -BUILD_DEPENDS="perl graphviz flex"
    1.23 +BUILD_DEPENDS="bison cmake flex python"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	sed -i 's|man/man1|share/&|' Makefile*
    1.29 -	./configure --shared --prefix /usr --docdir /usr/share/doc \
    1.30 -		--install /usr/bin/install &&
    1.31 -	make &&
    1.32 +	mkdir build
    1.33 +	cd build
    1.34 +	cmake -G "Unix Makefiles" .. &&
    1.35 +	make -j 1 &&
    1.36  	make DESTDIR=$DESTDIR install
    1.37  }
    1.38  
    1.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.40  genpkg_rules()
    1.41  {
    1.42 -	mkdir -p $fs/usr
    1.43 -	cp -a $install/usr/bin $fs/usr
    1.44 +	mkdir -p $fs/usr/bin
    1.45 +	cp -a $install/usr/local/bin/* $fs/usr/bin
    1.46  }