wok view msgpack/receipt @ rev 23555

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