wok view pugixml/receipt @ rev 21726

updated pugixml (1.6 -> 1.9)
author Hans-G?nter Theisgen
date Wed Jun 12 15:36:52 2019 +0100 (2019-06-12)
parents a78610b2eb47
children b3bc4f725c0b
line source
1 # SliTaz package receipt.
3 PACKAGE="pugixml"
4 VERSION="1.9"
5 CATEGORY="misc"
6 SHORT_DESC="Light-weight, simple and fast XML parser for C++ with XPath support."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://pugixml.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/zeux/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 SUGGESTED="cmake"
15 BUILD_DEPENDS="cmake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir build && cd build
21 cmake .. -DCMAKE_INSTALL_PREFIX=/usr
22 make
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs/
30 }