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:
Florian Fainelli 2022-12-20 12:08:05 -08:00 committed by Thomas Petazzoni
parent 620a77dc9d
commit e2468404c7
2 changed files with 18 additions and 0 deletions

View File

@ -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

View File

@ -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))