summaryrefslogtreecommitdiffstats
path: root/rules/cppzmq.make
diff options
context:
space:
mode:
authorMarkus Pargmann <mpa@pengutronix.de>2014-06-17 10:25:18 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2014-06-17 11:30:24 +0200
commit99457c56adfeaf460cca084620ddd68026e3a937 (patch)
treee318113edb1d63dc388e0aa795f456ee5110bea4 /rules/cppzmq.make
parent77c6a94058b0c736002a21667552ed973a8e800b (diff)
downloadptxdist-99457c56adfeaf460cca084620ddd68026e3a937.tar.gz
ptxdist-99457c56adfeaf460cca084620ddd68026e3a937.tar.xz
cppzmq: zmq header for C++
Signed-off-by: Markus Pargmann <mpa@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/cppzmq.make')
-rw-r--r--rules/cppzmq.make51
1 files changed, 51 insertions, 0 deletions
diff --git a/rules/cppzmq.make b/rules/cppzmq.make
new file mode 100644
index 000000000..91aa1f4af
--- /dev/null
+++ b/rules/cppzmq.make
@@ -0,0 +1,51 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2014 by Markus Pargmann <mpa@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_CPPZMQ) += cppzmq
+
+#
+# Paths and names
+#
+CPPZMQ_VERSION := ee47ae4cddc3
+CPPZMQ_MD5 := cf5d2f77caaa0749e522c143fd5260c8
+CPPZMQ := cppzmq-$(CPPZMQ_VERSION)
+CPPZMQ_SUFFIX := tar.gz
+CPPZMQ_URL := https://github.com/zeromq/cppzmq.git;tag=$(CPPZMQ_VERSION)
+CPPZMQ_SOURCE := $(SRCDIR)/$(CPPZMQ).$(CPPZMQ_SUFFIX)
+CPPZMQ_DIR := $(BUILDDIR)/$(CPPZMQ)
+CPPZMQ_LICENSE := unknown
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+CPPZMQ_CONF_TOOL := NO
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/cppzmq.compile:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/cppzmq.install:
+ @$(call targetinfo)
+ install -D -m 0644 $(CPPZMQ_DIR)/zmq.hpp $(CPPZMQ_PKGDIR)/usr/include/zmq.hpp
+ @$(call touch)
+
+# vim: syntax=make