wok-next view pugixml/receipt @ rev 21103

emacs: depends on emacs-common
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 03 11:21:15 2019 +0200 (2019-01-03)
parents a3c581bf52b8
children 80c115184401
line source
1 # SliTaz package receipt.
3 PACKAGE="pugixml"
4 VERSION="1.6"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://pugixml.org/"
11 WGET_URL="https://github.com/zeux/pugixml/releases/download/v$VERSION/$TARBALL"
13 SUGGESTED="cmake"
14 BUILD_DEPENDS="cmake"
16 compile_rules() {
17 mkdir build
18 cd build
19 cmake \
20 -DCMAKE_INSTALL_PREFIX=/usr \
21 ../scripts &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 cp -a $install/* $fs/
28 }