package/slang: add option to enable/disable slsh
The S-lang shell is currently installed by default but most packages are typically interested in the shared libraries only. Add a configuration option to disable the slsh program and its supporting files. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
620a77dc9d
commit
e2468404c7
@ -5,3 +5,12 @@ config BR2_PACKAGE_SLANG
|
||||
Multi-platform console display library.
|
||||
|
||||
http://www.jedsoft.org/slang/index.html
|
||||
|
||||
if BR2_PACKAGE_SLANG
|
||||
|
||||
config BR2_PACKAGE_SLANG_SLSH
|
||||
bool "enable slsh"
|
||||
help
|
||||
Enable the S-lang interpreter
|
||||
|
||||
endif
|
||||
|
@ -60,4 +60,13 @@ SLANG_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) install-static
|
||||
SLANG_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-static
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SLANG_SLSH),)
|
||||
define SLANG_REMOVE_SLSH
|
||||
rm -rf $(TARGET_DIR)/etc/slsh.rc \
|
||||
$(TARGET_DIR)/usr/share/slsh \
|
||||
$(TARGET_DIR)/usr/bin/slsh
|
||||
endef
|
||||
SLANG_POST_INSTALL_TARGET_HOOKS += SLANG_REMOVE_SLSH
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
Loading…
Reference in New Issue
Block a user