1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-19 08:13:21 +00:00

New port: devel/msgpuck

MsgPuck is a simple and efficient MsgPack binary serialization library in
a self-contained header file.

* Can be easily incorporated into your project
* Is very easy to use (see examples below)
* Is fully tested and documented
* Has clean and readable C source code
* Is published under the very liberal license (BSD-2)
This commit is contained in:
Veniamin Gvozdikov 2015-06-19 16:35:04 +00:00
parent 142caf0d43
commit 9988bc9b87
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=390124
6 changed files with 49 additions and 0 deletions

View File

@ -1376,6 +1376,7 @@
SUBDIR += mph
SUBDIR += mq4cpp
SUBDIR += msgpack
SUBDIR += msgpuck
SUBDIR += msp430-binutils
SUBDIR += msp430-gcc
SUBDIR += msp430-gdb

18
devel/msgpuck/Makefile Normal file
View File

@ -0,0 +1,18 @@
# $FreeBSD$
PORTNAME= msgpuck
PORTVERSION= 1.0.0
CATEGORIES= devel
MAINTAINER= vg@FreeBSD.org
COMMENT= MsgPack binary serialization library in a self-contained header
LICENSE= BSD2CLAUSE
USE_GITHUB= yes
GH_PROJECT= msgpuck
GH_ACCOUNT= tarantool
USES= cmake
.include <bsd.port.mk>

2
devel/msgpuck/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (tarantool-msgpuck-1.0.0_GH0.tar.gz) = f9caff62f6deb2909b7294223231556ed9332dfbc57061750f652d397f5df9ed
SIZE (tarantool-msgpuck-1.0.0_GH0.tar.gz) = 41350

View File

@ -0,0 +1,13 @@
--- CMakeLists.txt.orig 2015-06-19 08:57:12 UTC
+++ CMakeLists.txt
@@ -1,6 +1,10 @@
project(msgpuck)
cmake_minimum_required(VERSION 2.6)
+if(POLICY CMP0037)
+ cmake_policy(SET CMP0037 OLD)
+endif(POLICY CMP0037)
+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -pg -Wall -Wextra")

11
devel/msgpuck/pkg-descr Normal file
View File

@ -0,0 +1,11 @@
MsgPuck is a simple and efficient MsgPack binary serialization library in
a self-contained header file.
* Can be easily incorporated into your project
* Is very easy to use (see examples below)
* Is fully tested and documented
* Has clean and readable C source code
* Is published under the very liberal license (BSD-2)
WWW: https://github.com/tarantool/msgpuck

4
devel/msgpuck/pkg-plist Normal file
View File

@ -0,0 +1,4 @@
include/msgpuck.h
lib/libmsgpuck.so
lib/libmsgpuck.so.0
lib/libmsgpuck.so.0.1