3c1b712748
Changes from release notes: * improved the description for the DESERIALIZATION-ERROR exception for non-deserializable message bodies from HTTP servers with error responses * added the YamlRpcConnection class to the YamlRpcClient module * updated the DataStreamClient module for complex types and new internal RestClient API changes * updated the DataStreamUtil module for complex types * fixed a bug deserializing single-quoted strings; also serialized "!number" values will always include the tag to avoid potential future ambiguity * improved argument error messages with RPC calls in the YamlRpcHandler module
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2018/06/08 20:12:49 nros Exp $
|
|
|
|
DISTNAME= qore-yaml-module-0.6
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
GITHUB_PROJECT= module-yaml
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= nros@NetBSD.org
|
|
COMMENT= Yaml module for Qore
|
|
HOMEPAGE= http://www.qore.org/
|
|
LICENSE= gnu-lgpl-v2.1 OR mit
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES= c c++11
|
|
USE_TOOLS+= gmake pax
|
|
|
|
PTHREAD_OPTS+= native
|
|
|
|
CONFIGURE_ARGS+=--with-libsuffix=""
|
|
|
|
#This is needed in order to comply the with MIT license and binary distribution
|
|
#Install docs.
|
|
INSTALLATION_DIRS+= share/doc/${PKGBASE}
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING.LGPL \
|
|
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING.MIT \
|
|
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
cd ${WRKSRC}/docs && ${PAX} -wr * \
|
|
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} \
|
|
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
.include "../../lang/qore/module.mk"
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../textproc/libyaml/buildlink3.mk"
|
|
.include "../../lang/qore/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|