21 lines
863 B
BlitzBasic
21 lines
863 B
BlitzBasic
DESCRIPTION = "ZeroMQ looks like an embeddable networking library but acts like a concurrency framework"
|
|
HOMEPAGE = "http://www.zeromq.org"
|
|
LICENSE = "GNU"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c593001a89f5a85dd2ddf564805deb860e02471171b3f204944857336295c3e5"
|
|
|
|
PACKAGECONFIG ??= "libsodium"
|
|
PACKAGECONFIG[libsodium] = "--with-libsodium, --without-libsodium, libsodium"
|
|
|
|
SRC_URI = "http://github.com/zeromq/zeromq4-1/releases/download/v${PV}/zeromq-${PV}.tar.gz"
|
|
SRC_URI[md5sum] = "c897d4005a3f0b8276b00b7921412379"
|
|
SRC_URI[sha256sum] = "c593001a89f5a85dd2ddf564805deb860e02471171b3f204944857336295c3e5"
|
|
|
|
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 ptest pkgconfig
|