mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 10:31:20 +02:00
27 lines
512 B
Makefile
27 lines
512 B
Makefile
# $FreeBSD: head/net/nng/Makefile 488341 2018-12-25 20:25:39Z tcberner $
|
|
|
|
PORTNAME= nng
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.1.1
|
|
CATEGORIES= net
|
|
PKGNAMEPREFIX= lib
|
|
|
|
MAINTAINER= swills@FreeBSD.org
|
|
COMMENT= Lightweight, broker-less messaging
|
|
|
|
USES= cmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= nanomsg
|
|
|
|
CFLAGS= -I${LOCALBASE}/include
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
|
|
|
|
CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON
|
|
CMAKE_ARGS+= -DNNG_ENABLE_TLS:BOOL=ON
|
|
CMAKE_ARGS+= -DNNG_STATIC_LIB:BOOL=ON
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.mk>
|