wok-next view zeromq/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 9170e4b0128c
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="zeromq"
4 VERSION="3.2.2.3"
5 CATEGORY="misc"
6 SHORT_DESC="The ZeroMQ messaging library"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3 LGPL3"
9 WEB_SITE="http://zeromq.org/"
11 OBVERSION="4.0.0"
12 TARBALL="openbts-$OBVERSION.zip"
13 WGET_URL="https://github.com/RangeNetworks/dev/releases/download/v$OBVERSION/v$OBVERSION-source.zip"
15 BUILD_DEPENDS="xmlto asciidoc"
16 SPLIT="zeromq-dev"
18 compile_rules() {
19 tar xzf range-libzmq_$VERSION.tar.gz
20 cd zeromq-*
22 ./configure -prefix=/usr $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
26 cp debian/zmq.hpp $DESTDIR/usr/include
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 zeromq) copy @std;;
32 *-dev) copy @dev;;
33 esac
34 }