wok-6.x annotate 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 (16 months ago)
parents
children 595fe6959202
rev   line source
Hans-G?nter@25527 1 # SliTaz package receipt.
Hans-G?nter@25527 2
Hans-G?nter@25527 3 PACKAGE="libmpack"
Hans-G?nter@25527 4 VERSION="1.0.5"
Hans-G?nter@25527 5 CATEGORY="libs"
Hans-G?nter@25527 6 SHORT_DESC="Simple implementation of msgpack in C."
Hans-G?nter@25527 7 MAINTAINER="maintainer@slitaz.org"
Hans-G?nter@25527 8 LICENSE="MIT"
Hans-G?nter@25527 9 WEB_SITE="https://github.com/libmpack/libmpack"
Hans-G?nter@25527 10
Hans-G?nter@25527 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@25527 12 WGET_URL="${WEB_SITE}/archive/$VERSION.tar.gz"
Hans-G?nter@25527 13
Hans-G?nter@25527 14 BUILD_DEPENDS="libtool"
Hans-G?nter@25527 15
Hans-G?nter@25527 16 # Rules to configure and make the package.
Hans-G?nter@25527 17 compile_rules()
Hans-G?nter@25527 18 {
Hans-G?nter@25527 19 make &&
Hans-G?nter@25527 20 make install \
Hans-G?nter@25527 21 DESTDIR="$DESTDIR" \
Hans-G?nter@25527 22 PREFIX=/usr
Hans-G?nter@25527 23 }
Hans-G?nter@25527 24
Hans-G?nter@25527 25 # Rules to gen a SliTaz package suitable for Tazpkg.
Hans-G?nter@25527 26 genpkg_rules()
Hans-G?nter@25527 27 {
Hans-G?nter@25527 28 cook_copy_files *.so*
Hans-G?nter@25527 29 }