wok annotate msgpack/receipt @ rev 23833
updated picard (1.4.0.5 -> 2.3.1)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jun 01 07:18:17 2020 +0100 (2020-06-01) |
parents | 08d56db13118 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@20149 | 1 # SliTaz package receipt. |
pascal@20149 | 2 |
pascal@20149 | 3 PACKAGE="msgpack" |
Hans-G?nter@23195 | 4 VERSION="3.2.1" |
pascal@20149 | 5 CATEGORY="network" |
Hans-G?nter@21491 | 6 SHORT_DESC="MessagePack implementation for C and C++." |
pascal@20149 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20149 | 8 LICENSE="MIT" |
Hans-G?nter@21491 | 9 WEB_SITE="https://tmate.io/" |
Hans-G?nter@21491 | 10 |
pascal@20149 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@21491 | 12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE-c/archive/cpp-$VERSION.tar.gz" |
pascal@20149 | 13 |
pascal@20149 | 14 BUILD_DEPENDS="cmake zlib" |
pascal@20149 | 15 |
pascal@20149 | 16 # Rules to configure and make the package. |
pascal@20149 | 17 compile_rules() |
pascal@20149 | 18 { |
pascal@20149 | 19 cmake -DCMAKE_INSTALL_PREFIX=/usr . && |
pascal@20149 | 20 make && |
pascal@20149 | 21 make DESTDIR=$DESTDIR install |
pascal@20149 | 22 } |
pascal@20149 | 23 |
pascal@20149 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20149 | 25 genpkg_rules() |
pascal@20149 | 26 { |
pascal@20149 | 27 mkdir -p $fs/usr/lib |
Hans-G?nter@23195 | 28 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@20149 | 29 } |