mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 05:10:20 +00:00
zero-mq : Add recipe.
Builds on ARM and tests ran on Zynq. Signed-off-by: Philip Balister <philip@balister.org> Signed-off-by: Martin Townsend <martin.townsend@xsilon.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
54216335fc
commit
c4bfe85cde
27
meta-oe/recipes-connectivity/zeromq/zeromq_4.0.4.bb
Normal file
27
meta-oe/recipes-connectivity/zeromq/zeromq_4.0.4.bb
Normal file
@@ -0,0 +1,27 @@
|
||||
DESCRIPTION = "ZeroMQ looks like an embeddable networking library but acts like a concurrency framework"
|
||||
HOMEPAGE = "http://www.zeromq.org"
|
||||
LICENSE = "LGPLv3+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=d5311495d952062e0e4fbba39cbf3de1"
|
||||
|
||||
SRC_URI = "http://download.zeromq.org/zeromq-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "f3c3defbb5ef6cc000ca65e529fdab3b"
|
||||
SRC_URI[sha256sum] = "1ef71d46e94f33e27dd5a1661ed626cd39be4d2d6967792a275040e34457d399"
|
||||
|
||||
S = "${WORKDIR}/zeromq-${PV}"
|
||||
|
||||
#Uncomment to choose polling system manually. valid values are kqueue, epoll, devpoll, poll or select
|
||||
#EXTRA_OECONF += "--with-poller=kqueue"
|
||||
#CFLAGS_append += "-O0"
|
||||
#CXXFLAGS_append += "-O0"
|
||||
|
||||
inherit autotools
|
||||
|
||||
do_install_append () {
|
||||
install -d ${D}${bindir}/tests/zeromq-${PV}
|
||||
install -m 0755 ${B}/tests/.libs/* ${D}${bindir}/tests/zeromq-${PV}
|
||||
}
|
||||
|
||||
PACKAGES = "${PN}-dbg ${PN}-test ${PN} ${PN}-staticdev ${PN}-doc ${PN}-dev ${PN}-locale"
|
||||
|
||||
FILES_${PN}-dbg =+ "${bindir}/tests/zeromq-${PV}/.debug"
|
||||
FILES_${PN}-test = "${bindir}/tests"
|
||||
Reference in New Issue
Block a user