MessagePack is an efficient object serialization library, which are very compact and fast data format, with rich data structures compatible with JSON.
30 lines
576 B
Makefile
30 lines
576 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2011/04/06 13:01:30 obache Exp $
|
|
#
|
|
|
|
DISTNAME= msgpack-0.5.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://msgpack.org/releases/cpp/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://msgpack.org/
|
|
COMMENT= Binary-based efficient object serialization library
|
|
LICENSE= apache-2.0
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
|
|
GCC_REQD= 4.1
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
CFLAGS+= -march=i686
|
|
CXXFLAGS+= -march=i686
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|