summaryrefslogtreecommitdiff
path: root/package/p5-json-xs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/p5-json-xs/Makefile')
-rw-r--r--package/p5-json-xs/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/package/p5-json-xs/Makefile b/package/p5-json-xs/Makefile
new file mode 100644
index 000000000..f1bb7318c
--- /dev/null
+++ b/package/p5-json-xs/Makefile
@@ -0,0 +1,33 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= p5-json-xs
+PKG_VERSION:= 3.01
+PKG_RELEASE:= 1
+PKG_MD5SUM:= b7be65295baf6dd9233c6494782c1153
+PKG_DESCR:= json serialising/deserialising, done correctly and fast
+PKG_SECTION:= dev/perl
+PKG_DEPENDS:= perl
+PKG_BUILDDEP:= perl
+PKG_SITES:= http://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/
+
+DISTFILES:= JSON-XS-${PKG_VERSION}.tar.gz
+WRKDIST= ${WRKDIR}/JSON-XS-${PKG_VERSION}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,P5_JSON_XS,p5-json-xs,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+include $(TOPDIR)/mk/perl.mk
+
+CONFIG_STYLE:= perl
+XAKE_FLAGS+= $(PERL_ENV)
+
+p5-json-xs-install:
+ $(INSTALL_DIR) $(IDIR_P5_JSON_XS)$(PERL_SITEDIR)
+ $(CP) $(WRKINST)$(PERL_SITEDIR)/* \
+ $(IDIR_P5_JSON_XS)$(PERL_SITEDIR)
+
+include ${TOPDIR}/mk/pkg-bottom.mk