generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
10
package/libcli/Config.in
Normal file
10
package/libcli/Config.in
Normal file
@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_LIBCLI
|
||||
bool "libcli"
|
||||
help
|
||||
Libcli provides a shared library for including a Cisco-like
|
||||
command-line interface into other software. It's a telnet
|
||||
interface which supports command-line editing, history,
|
||||
authentication and callbacks for a user-definable function
|
||||
tree.
|
||||
|
||||
https://github.com/dparrish/libcli
|
||||
3
package/libcli/libcli.hash
Normal file
3
package/libcli/libcli.hash
Normal file
@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 179f78592f73492c22cc1b544b6f8cb0f6630a2f670430c118b8e084e6562e74 libcli-1.10.7.tar.gz
|
||||
sha256 376b54d4c5f4aa99421823fa4da93e3ab73096fce2400e89858632aa7da24a14 COPYING
|
||||
44
package/libcli/libcli.mk
Normal file
44
package/libcli/libcli.mk
Normal file
@ -0,0 +1,44 @@
|
||||
################################################################################
|
||||
#
|
||||
# libcli
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBCLI_VERSION = 1.10.7
|
||||
LIBCLI_SITE = $(call github,dparrish,libcli,V$(LIBCLI_VERSION))
|
||||
LIBCLI_LICENSE = LGPL-2.1
|
||||
LIBCLI_LICENSE_FILES = COPYING
|
||||
LIBCLI_INSTALL_STAGING = YES
|
||||
|
||||
# We will pass optimisation level via CFLAGS so remove libcli default
|
||||
LIBCLI_MAKE_ARGS += OPTIM=
|
||||
|
||||
# We can't run the test harness
|
||||
LIBCLI_MAKE_ARGS += TESTS=
|
||||
|
||||
# Disable the static library for shared only build
|
||||
ifeq ($(BR2_SHARED_LIBS),y)
|
||||
LIBCLI_MAKE_ARGS += STATIC_LIB=
|
||||
endif
|
||||
|
||||
# Disable the shared library for static only build
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
LIBCLI_MAKE_ARGS += DYNAMIC_LIB=
|
||||
endif
|
||||
|
||||
define LIBCLI_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
$(LIBCLI_MAKE_ARGS)
|
||||
endef
|
||||
|
||||
define LIBCLI_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
$(LIBCLI_MAKE_ARGS) DESTDIR=$(STAGING_DIR) PREFIX=/usr install
|
||||
endef
|
||||
|
||||
define LIBCLI_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
$(LIBCLI_MAKE_ARGS) DESTDIR=$(TARGET_DIR) PREFIX=/usr install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user