You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2019 Banglang Huang <banglang.huang@foxmail.com>
  3. # Copyright (C) 2019 Rosy Song <rosysong@rosinson.com>
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=log4cplus
  10. PKG_VERSION:=2.0.4
  11. PKG_RELEASE:=2
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  13. PKG_SOURCE_URL:=@SF/$(PKG_NAME)
  14. PKG_HASH:=faf15f3651e2d0f9f9cf2c1bfcb38ec4962f22f4a671410453a27c0976da5e36
  15. PKG_MAINTAINER:=BangLang Huang <banglang.huang@foxmail.com>, Rosy Song <rosysong@rosinson.com>
  16. PKG_LICENSE:=BSD-2-Clause Apache-2.0
  17. PKG_LICENSE_FILES:=LICENSE
  18. HOST_BUILD_PARALLEL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. CMAKE_INSTALL:=1
  21. include $(INCLUDE_DIR)/package.mk
  22. include $(INCLUDE_DIR)/host-build.mk
  23. include $(INCLUDE_DIR)/cmake.mk
  24. define Package/log4cplus
  25. SECTION:=libs
  26. CATEGORY:=Libraries
  27. TITLE:=A simple to use C++ logging API
  28. URL:=https://sourceforge.net/p/log4cplus/wiki/Home/
  29. DEPENDS:=+libstdcpp
  30. endef
  31. define Package/log4cplus/description
  32. log4cplus is a simple to use C++11 logging API providing thread--safe,
  33. flexible, and arbitrarily granular control over log management and
  34. configuration. It is modeled after the Java log4j API.
  35. endef
  36. CMAKE_HOST_OPTIONS += \
  37. -DCMAKE_INSTALL_LIBDIR:PATH=lib
  38. CMAKE_OPTIONS += \
  39. -DLOG4CPLUS_BUILD_LOGGINGSERVER:BOOL=OFF \
  40. -DLOG4CPLUS_BUILD_TESTING:BOOL=OFF \
  41. -DUNICODE:BOOL=OFF \
  42. -DWITH_ICONV:BOOL=OFF
  43. TARGET_CFLAGS += -flto
  44. TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
  45. define Package/log4cplus/install
  46. $(INSTALL_DIR) $(1)/usr/lib
  47. $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblog4cplus*.so* $(1)/usr/lib
  48. endef
  49. $(eval $(call BuildPackage,log4cplus))
  50. $(eval $(call HostBuild))