wok view pugixml/receipt @ rev 23866

Up: parole (0.5.4)
author Richard Dunbar <mojo@slitaz.org>
date Fri Jun 19 20:32:02 2020 -0400 (2020-06-19)
parents 2b147b16adcb
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="pugixml"
4 VERSION="1.10"
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 &&
21 cd build &&
22 cmake .. -DCMAKE_INSTALL_PREFIX=/usr &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs/
31 }