wok view msgpack/receipt @ rev 22420

these 3 packages seem not used in xfce4 v4.12, so reverting to last version in slitaz: 4.10.0: libxfcegui4 libxfcegui4-dev xfce4-mixer
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Dec 15 09:01:23 2019 +0000 (2019-12-15)
parents 3ea059f6339d
children fadd1a998e4b
line source
1 # SliTaz package receipt.
3 PACKAGE="msgpack"
4 VERSION="3.1.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 }