diff --git a/common/shlibs b/common/shlibs index 2e6890c29a..f3444f7564 100644 --- a/common/shlibs +++ b/common/shlibs @@ -2759,3 +2759,4 @@ libpisync.so.1 pilot-link-0.12.5_1 libpitcl.so.0 pilot-link-0.12.5_1 libiscsi.so.8 libiscsi-1.18.0_1 libgme.so.0 libgme-0.6.1_1 +libczmq.so.4 czmq-4.0.1_1 diff --git a/srcpkgs/czmq-devel b/srcpkgs/czmq-devel new file mode 120000 index 0000000000..9000b9adff --- /dev/null +++ b/srcpkgs/czmq-devel @@ -0,0 +1 @@ +czmq \ No newline at end of file diff --git a/srcpkgs/czmq/template b/srcpkgs/czmq/template new file mode 100644 index 0000000000..21efbd35e5 --- /dev/null +++ b/srcpkgs/czmq/template @@ -0,0 +1,29 @@ +# Template file for 'czmq' +pkgname=czmq +version=4.0.1 +revision=1 +build_style=gnu-configure +hostmakedepends="pkg-config libtool automake asciidoc xmlto" +makedepends="libuuid-devel zeromq-devel" +short_desc="High-level C binding for ZeroMQ" +maintainer="Toyam Cox " +license="MPL-2" +homepage="http://czmq.zeromq.org/" +distfiles="https://github.com/zeromq/czmq/archive/v${version}.tar.gz" +checksum=3c50bd550a1194f76aff0e743ce00a85cabe998989dcb8d14c0b5ae39417101b + +pre_configure() { + ./autogen.sh +} + +czmq-devel_package() { + short_desc+=" - development files" + depends="${sourcepkg}>=${version}_${revision}" + pkg_install() { + vmove usr/include + vmove usr/lib/*.a + vmove usr/lib/*.so + vmove usr/lib/pkgconfig + vmove usr/share/man/man3 + } +}