wok view doxygen/receipt @ rev 21150

updated libbsd and libbsd-dev (0.6.0 -> 0.9.1)
author Hans-G?nter Theisgen
date Sat Mar 30 10:57:18 2019 +0100 (2019-03-30)
parents f6af821600e6
children b537f0bd32fb
line source
1 # SliTaz package receipt.
3 PACKAGE="doxygen"
4 VERSION="1.8.15"
5 CATEGORY="development"
6 TAGS="language documentation"
7 SHORT_DESC="Source code documentation generator tool."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.doxygen.nl/"
12 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
13 WGET_URL="${WEB_SITE}files/$TARBALL"
15 BUILD_DEPENDS="bison cmake flex python"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir build
21 cd build
22 cmake -G "Unix Makefiles" .. &&
23 make -j 1 &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 cp -a $install/usr/local/bin/* $fs/usr/bin
32 }