summaryrefslogtreecommitdiffstats
path: root/rules/cppzmq.make
blob: 91aa1f4afb5534984c505b584e3357939a307aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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