479cebcfb7
Shell In A Box implements a web server that can export arbitrary command line tools to a web based terminal emulator. This emulator is accessible to any JavaScript and CSS enabled web browser and does not require any additional browser plugins. Signed-off-by: Olivier Singla <olivier.singla@gmail.com> [Thomas: - Use "select" instead of "depends on" for the OpenSSL dependency, and use alphabetic ordering. - Rewrap Config.in help text. - Use github macro - Explain why the OpenSSL dependency is mandatory, while --enable-ssl/--disable-ssl are available.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
800 B
Makefile
24 lines
800 B
Makefile
################################################################################
|
|
#
|
|
# shellinabox
|
|
#
|
|
################################################################################
|
|
|
|
SHELLINABOX_VERSION = v2.19
|
|
SHELLINABOX_SITE = $(call github,shellinabox,shellinabox,$(SHELLINABOX_VERSION))
|
|
SHELLINABOX_LICENSE = GPLv2 with OpenSSL exception
|
|
SHELLINABOX_LICENSE_FILES = COPYING GPL-2
|
|
|
|
# Fetching from Github, and patching Makefile.am, so we need to autoreconf
|
|
SHELLINABOX_AUTORECONF = YES
|
|
|
|
# The OpenSSL support is supposed to be optional, but in practice,
|
|
# with OpenSSL disabled, it fails to build. See
|
|
# https://github.com/shellinabox/shellinabox/issues/385.
|
|
SHELLINABOX_DEPENDENCIES = zlib openssl
|
|
SHELLINABOX_CONF_OPTS = \
|
|
--disable-runtime-loading \
|
|
--enable-ssl
|
|
|
|
$(eval $(autotools-package))
|