[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,23 @@
config BR2_PACKAGE_SIGROK_CLI
bool "sigrok-cli"
# libsigrok->libglib2:
depends on BR2_USE_WCHAR
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU
# libsigrok->libzip
depends on !BR2_STATIC_LIBS
# libsigrok
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
depends on BR2_ENABLE_LOCALE
select BR2_PACKAGE_LIBSIGROK
help
Sigrok-cli is a command-line frontend for the sigrok
software suite.
http://sigrok.org/wiki/Sigrok-cli
comment "sigrok-cli needs a toolchain w/ locale, wchar, threads, dynamic library, gcc >= 4.7"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || BR2_STATIC_LIBS \
|| !BR2_ENABLE_LOCALE

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 71d0443f36897bf565732dec206830dbea0f2789b6601cf10536b286d1140ab8 sigrok-cli-0.7.2.tar.gz
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING

View File

@ -0,0 +1,21 @@
################################################################################
#
# sigrok-cli
#
################################################################################
SIGROK_CLI_VERSION = 0.7.2
SIGROK_CLI_SITE = http://sigrok.org/download/source/sigrok-cli
SIGROK_CLI_LICENSE = GPL-3.0+
SIGROK_CLI_LICENSE_FILES = COPYING
SIGROK_CLI_SELINUX_MODULES = sigrok
SIGROK_CLI_DEPENDENCIES = host-pkgconf libsigrok
ifeq ($(BR2_PACKAGE_LIBSIGROKDECODE),y)
SIGROK_CLI_CONF_OPTS += --with-libsigrokdecode
SIGROK_CLI_DEPENDENCIES += libsigrokdecode
else
SIGROK_CLI_CONF_OPTS += --with-libsigrokdecode=NO
endif
$(eval $(autotools-package))