1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-13 10:59:13 +02:00
openwrt-packages/libs/websocketpp/Makefile
Rosen Penev 2e654b19f3 treewide: back to cmake.mk
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:05:01 -07:00

38 lines
855 B
Makefile

#
# Copyright (C) 2018 Bruno Randolf (br1@einfach.org)
#
include $(TOPDIR)/rules.mk
PKG_NAME:=websocketpp
PKG_VERSION:=0.8.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/zaphoyd/websocketpp/archive/$(PKG_VERSION)/
PKG_HASH:=6ce889d85ecdc2d8fa07408d6787e7352510750daa66b5ad44aacb47bea76755
PKG_MAINTAINER:=Bruno Randolf <br1@einfach.org>
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=COPYING
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
CMAKE_INSTALL:=1
define Package/websocketpp
SECTION:=libs
CATEGORY:=Libraries
TITLE:=WebSocket++
URL:=https://www.zaphoyd.com/websocketpp
BUILDONLY:=1
endef
define Package/websocketpp/description
WebSocket++ is a header only C++ library that implements RFC6455
The WebSocket Protocol.
endef
$(eval $(call BuildPackage,websocketpp))