wok 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 (20 months ago) |
parents | 395b0dea66db |
children | 97ca3cd2cfe4 |
files | libmpack-dev/receipt libmpack/description.txt libmpack/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libmpack-dev/receipt Sat Feb 25 07:28:19 2023 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libmpack-dev" 1.7 +VERSION="1.0.5" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Simple implementation of msgpack in C - development files." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +WEB_SITE="https://github.com/libmpack/libmpack" 1.13 + 1.14 +WANTED="libmpack" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + get_dev_files 1.20 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libmpack/description.txt Sat Feb 25 07:28:19 2023 +0100 2.3 @@ -0,0 +1,2 @@ 2.4 +Libmpack is a small binary serialization and RPC library 2.5 +that implements both the msgpack and msgpack-rpc specifications.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libmpack/receipt Sat Feb 25 07:28:19 2023 +0100 3.3 @@ -0,0 +1,29 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="libmpack" 3.7 +VERSION="1.0.5" 3.8 +CATEGORY="libs" 3.9 +SHORT_DESC="Simple implementation of msgpack in C." 3.10 +MAINTAINER="maintainer@slitaz.org" 3.11 +LICENSE="MIT" 3.12 +WEB_SITE="https://github.com/libmpack/libmpack" 3.13 + 3.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.15 +WGET_URL="${WEB_SITE}/archive/$VERSION.tar.gz" 3.16 + 3.17 +BUILD_DEPENDS="libtool" 3.18 + 3.19 +# Rules to configure and make the package. 3.20 +compile_rules() 3.21 +{ 3.22 + make && 3.23 + make install \ 3.24 + DESTDIR="$DESTDIR" \ 3.25 + PREFIX=/usr 3.26 +} 3.27 + 3.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.29 +genpkg_rules() 3.30 +{ 3.31 + cook_copy_files *.so* 3.32 +}