wok-current rev 23453
updated pugixml (1.9 -> 1.10)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 03 10:50:04 2020 +0100 (2020-04-03) |
parents | 7f9c1a9f91b2 |
children | 8497f0e1eea5 |
files | pugixml/receipt |
line diff
1.1 --- a/pugixml/receipt Fri Apr 03 10:44:44 2020 +0100 1.2 +++ b/pugixml/receipt Fri Apr 03 10:50:04 2020 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="pugixml" 1.7 -VERSION="1.9" 1.8 +VERSION="1.10" 1.9 CATEGORY="misc" 1.10 SHORT_DESC="Light-weight, simple and fast XML parser for C++ with XPath support." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -17,14 +17,15 @@ 1.13 # Rules to configure and make the package. 1.14 compile_rules() 1.15 { 1.16 - mkdir build && cd build 1.17 - cmake .. -DCMAKE_INSTALL_PREFIX=/usr 1.18 - make 1.19 + mkdir build && 1.20 + cd build && 1.21 + cmake .. -DCMAKE_INSTALL_PREFIX=/usr && 1.22 + make && 1.23 make DESTDIR=$DESTDIR install 1.24 } 1.25 1.26 # Rules to gen a SliTaz package suitable for Tazpkg. 1.27 genpkg_rules() 1.28 { 1.29 - cp -a $install/* $fs/ 1.30 + cp -a $install/* $fs/ 1.31 }