blob: fc6564f8f2d7c196d99ce8ccc1179662e09fc034 (
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
|
# $NetBSD: Makefile,v 1.1 2013/09/13 11:12:06 fhajny Exp $
#
DISTNAME= rabbitmq-c-0.4.1
CATEGORIES= net
MASTER_SITES= https://github.com/alanxz/rabbitmq-c/releases/download/v${PKGVERSION_NOREV}/
FETCH_USING= curl
MAINTAINER= filip@joyent.com
HOMEPAGE= https://github.com/alanxz/rabbitmq-c
COMMENT= C-language AMQP client library for use with AMQP servers
LICENSE= mit
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
USE_CMAKE= yes
USE_LANGUAGES+= c99
USE_TOOLS+= pkg-config
SUBST_CLASSES+= man
SUBST_STAGE.man= pre-build
SUBST_MESSAGE.man= Fix man installation path
SUBST_FILES.man= tools/CMakeLists.txt
SUBST_SED.man= -e 's,share/man,${PKGMANDIR},'
CMAKE_ARGS+= -DBUILD_TOOLS=ON
CMAKE_ARGS+= -DBUILD_TOOLS_DOCS=ON
CMAKE_ARGS+= -DENABLE_SSL_SUPPORT=ON
.include "../../devel/popt/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|