wok-next view pugixml/receipt @ rev 19068
conky-theme-onsea: take care on root in post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Apr 21 22:04:50 2016 +0200 (2016-04-21) |
parents | |
children | a3c581bf52b8 |
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="http://pugixml.org/"
11 WGET_URL="http://github.com/zeux/pugixml/releases/download/v$VERSION/$TARBALL"
13 SUGGESTED="cmake"
14 BUILD_DEPENDS="cmake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir build && cd build
20 cmake -DCMAKE_INSTALL_PREFIX=/usr ../scripts
21 make
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/* $fs/
29 }