wok view libmpack/receipt @ rev 25527

created recipes for libmpack and libmpack-dev 1.0.5
author Hans-G?nter Theisgen
date Sat Feb 25 07:28:19 2023 +0100 (15 months ago)
parents
children 595fe6959202
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpack"
4 VERSION="1.0.5"
5 CATEGORY="libs"
6 SHORT_DESC="Simple implementation of msgpack in C."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/libmpack/libmpack"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}/archive/$VERSION.tar.gz"
14 BUILD_DEPENDS="libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make &&
20 make install \
21 DESTDIR="$DESTDIR" \
22 PREFIX=/usr
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cook_copy_files *.so*
29 }