wok-next view pugixml/receipt @ rev 21427

updated qt4 (4.8.6 -> 4.8.7)
author Hans-G?nter Theisgen
date Tue May 05 08:11:24 2020 +0100 (2020-05-05)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
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/pugixml/releases/download/v$VERSION/$TARBALL"
13 TARBALL_SHA1="752958e524b67bea879d420c6d961d594920c5cc"
15 BUILD_DEPENDS="cmake"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 mkdir build
20 cd build
21 cmake \
22 -DCMAKE_INSTALL_PREFIX=/usr \
23 -DCMAKE_INSTALL_LIBDIR=lib \
24 -DBUILD_SHARED_LIBS=True \
25 -DCMAKE_BUILD_TYPE=Release \
26 .. &&
27 make &&
28 make install
29 }