[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

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

@ -0,0 +1,12 @@
config BR2_PACKAGE_LCDAPI
bool "lcdapi"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
help
C++ client API for lcdproc, containing a set of widget
classes.
https://github.com/spdawson/lcdapi
comment "lcdapi needs a toolchain w/ C++, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 6afdd4238af1fa7ea5f10378601381fc3f535a10504dc7d4ea8eab56e0dda091 lcdapi-0.11.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

14
package/lcdapi/lcdapi.mk Normal file
View File

@ -0,0 +1,14 @@
################################################################################
#
# lcdapi
#
################################################################################
LCDAPI_VERSION = 0.11
LCDAPI_SITE = $(call github,spdawson,lcdapi,v$(LCDAPI_VERSION))
LCDAPI_LICENSE = LGPL-2.1+
LCDAPI_LICENSE_FILES = COPYING
LCDAPI_AUTORECONF = YES
LCDAPI_INSTALL_STAGING = YES
$(eval $(autotools-package))