57bf50a1d9
Jansson is a C library for encoding, decoding and manipulating JSON data. It features: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suite
22 lines
651 B
Makefile
22 lines
651 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/07/13 10:38:32 wiz Exp $
|
|
|
|
DISTNAME= jansson-2.4
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.digip.org/jansson/releases/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.digip.org/jansson/
|
|
COMMENT= C library for encoding, decoding and manipulating JSON data
|
|
LICENSE= mit
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
PKGCONFIG_OVERRIDE+= jansson.pc.in
|
|
# Fails a self-test because the library exports more symbols than it should.
|
|
# It seems "libtool ... -export-symbols-regex '^json_' ..." doesn't work,
|
|
# at least not on NetBSD-6.99.20/amd64.
|
|
#TEST_TARGET= check
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|