2023-07-18 13:28:49 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=easyloggingpp
|
2023-07-23 12:24:05 +00:00
|
|
|
PKG_VERSION:=9.97.1
|
2023-07-18 13:28:49 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=https://codeload.github.com/abumq/easyloggingpp/tar.gz/v$(PKG_VERSION)?
|
2023-07-23 12:24:05 +00:00
|
|
|
PKG_HASH:=ebe473e17b13f1d1f16d0009689576625796947a711e14aec29530f39560c7c2
|
2023-07-18 13:28:49 +00:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Volker Christian <me@vchrist.at>
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
|
|
|
define Package/easyloggingpp
|
|
|
|
SECTION:=lib
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=A single header C++ Logging Library
|
|
|
|
URL:=https://github.com/abumq/easyloggingpp
|
|
|
|
BUILDONLY:=1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/easyloggingpp/description
|
|
|
|
Easylogging++ is single header efficient logging library for C++
|
|
|
|
applications. It is extremely powerful, highly extendable and
|
|
|
|
configurable to user's requirements.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,easyloggingpp))
|