This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

12
package/zlog/Config.in Normal file
View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_ZLOG
bool "zlog"
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_STATIC_LIBS
help
zlog is a reliable, high-performance, thread safe, flexible,
clear-model, pure C logging library.
https://github.com/HardySimpson/zlog
comment "zlog needs a toolchain w/ threads, dynamic library"
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS

3
package/zlog/zlog.hash Normal file
View File

@@ -0,0 +1,3 @@
# Locally computed
sha256 b150ff725e5f9e839f41c0f3d2e8f0e3cc303aa51194be0bc34a3c3299acc059 zlog-ccf8c36e918d6f3c7e6fe9e36eedf8583014c5c9.tar.gz
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING

26
package/zlog/zlog.mk Normal file
View File

@@ -0,0 +1,26 @@
################################################################################
#
# zlog
#
################################################################################
ZLOG_VERSION = ccf8c36e918d6f3c7e6fe9e36eedf8583014c5c9
ZLOG_SITE = $(call github,HardySimpson,zlog,$(ZLOG_VERSION))
ZLOG_LICENSE = LGPL-2.1
ZLOG_LICENSE_FILES = COPYING
ZLOG_INSTALL_STAGING = YES
define ZLOG_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \
-C $(@D) all
endef
define ZLOG_INSTALL_STAGING_CMDS
$(TARGET_MAKE_ENV) $(MAKE) PREFIX=$(STAGING_DIR)/usr -C $(@D) install
endef
define ZLOG_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) PREFIX=$(TARGET_DIR)/usr -C $(@D) install
endef
$(eval $(generic-package))