7cbbdce9b1
WebSocket++ is a header-only C++ library that implements RFC6455 The WebSocket Protocol. It allows integrating WebSocket client and server functionality into C++ programs. It uses interchangeable network transport modules, including one based on raw char buffers, one based on C++ iostreams, and one based on Asio (either via Boost or standalone). End users can write additional transport policies to support other networking or event libraries as needed.
16 lines
499 B
Makefile
16 lines
499 B
Makefile
# $NetBSD: Makefile,v 1.1 2017/03/14 13:09:37 wiz Exp $
|
|
|
|
DISTNAME= websocketpp-0.7.0
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=zaphoyd/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.zaphoyd.com/websocketpp
|
|
COMMENT= Header-only C++ library that implements the WebSocket protocol
|
|
#LICENSE= basically BSD, but includes other free software, see COPYING
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../devel/boost-headers/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|