From 4710ee12f8b7aac4400d6f808056ab38b88ed7f8 Mon Sep 17 00:00:00 2001 From: miqlas <5569059+extrowerk@users.noreply.github.com> Date: Tue, 23 Oct 2018 17:42:02 +0200 Subject: [PATCH] MSGPACK: bump (#3255) --- .../msgpack_c_cpp/msgpack_c_cpp-3.1.1.recipe | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 dev-libs/msgpack_c_cpp/msgpack_c_cpp-3.1.1.recipe diff --git a/dev-libs/msgpack_c_cpp/msgpack_c_cpp-3.1.1.recipe b/dev-libs/msgpack_c_cpp/msgpack_c_cpp-3.1.1.recipe new file mode 100644 index 000000000..b11d53912 --- /dev/null +++ b/dev-libs/msgpack_c_cpp/msgpack_c_cpp-3.1.1.recipe @@ -0,0 +1,106 @@ +SUMMARY="A serialization library" +DESCRIPTION="An efficient binary serialization format, which lets you exchange \ +data among multiple languages like JSON, except that it's faster and smaller. \ +Small integers are encoded into a single byte while typical short strings \ +require only one extra byte in addition to the strings themselves." +HOMEPAGE="https://msgpack.org/" +COPYRIGHT="2010-2018 MessagePack Developers" +LICENSE="Boost v1.0" +REVISION="1" +SOURCE_URI="https://github.com/msgpack/msgpack-c/archive/cpp-$portVersion.tar.gz" +CHECKSUM_SHA256="bda49f996a73d2c6080ff0523e7b535917cd28c8a79c3a5da54fc29332d61d1e" +SOURCE_DIR="msgpack-c-cpp-$portVersion" + +ARCHITECTURES="x86_gcc2 x86 x86_64" +SECONDARY_ARCHITECTURES="x86_gcc2 x86" + +libVersion="2.0.0" +libVersionCompat="$libVersion compat >= ${libVersion%%.*}" + +PROVIDES=" + msgpack_c_cpp$secondaryArchSuffix = $portVersion + lib:libmsgpackc$secondaryArchSuffix = $libVersionCompat + " +REQUIRES=" + haiku$secondaryArchSuffix + lib:libz$secondaryArchSuffix + " + +PROVIDES_devel=" + msgpack_c_cpp${secondaryArchSuffix}_devel = $portVersion + devel:libmsgpackc$secondaryArchSuffix = $libVersionCompat + " +REQUIRES_devel=" + msgpack_c_cpp$secondaryArchSuffix == $portVersion base + devel:libz$secondaryArchSuffix + " + +BUILD_REQUIRES=" + haiku${secondaryArchSuffix}_devel + devel:libboost_chrono$secondaryArchSuffix + devel:libboost_context$secondaryArchSuffix + devel:libboost_system$secondaryArchSuffix + devel:libboost_timer$secondaryArchSuffix + devel:libgtest$secondaryArchSuffix + devel:libz$secondaryArchSuffix + " +BUILD_PREREQUIRES=" + cmd:cmake + cmd:doxygen + cmd:gcc$secondaryArchSuffix + cmd:ld$secondaryArchSuffix + cmd:libtoolize$secondaryArchSuffix + cmd:make + cmd:pkg_config$secondaryArchSuffix + cmd:sed + " + +defineDebugInfoPackage msgpack_c_cpp$secondaryArchSuffix \ + "$libDir"/libmsgpackc.so.$libVersion + +PATCH() +{ + sed -i 's/-pthread/-lroot/g' example/cpp03/CMakeLists.txt +} + +BUILD() +{ + mkdir -p build && cd build + cmake \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX="$prefix" \ + -DCMAKE_INSTALL_LIBDIR="$libDir" \ + -DCMAKE_SKIP_RPATH=YES \ + -DMSGPACK_BUILD_EXAMPLES=OFF \ + -DMSGPACK_CXX11=OFF \ + .. + + make $jobArgs +} + +INSTALL() +{ + mkdir -p "$includeDir" + mkdir -p "$libDir" + + cd build + make install + + mv "$prefix"/include/* "$includeDir" + rm -rf "$prefix"/include + + rm -f "$libDir"/*.la + + prepareInstalledDevelLib libmsgpackc + + fixPkgconfig + + packageEntries devel \ + "$developDir" \ + "$libDir"/cmake +} + +TEST() +{ + make check +}