S-Lang (slang) is an interpreted language that may be embedded into an application to make the application extensible. It provides facilities required by interactive applications such as display/screen management, keyboard input and keymaps.
This package is known to build and work properly using an LFS-8.1 platform.
Download (HTTP): http://www.jedsoft.org/releases/slang/slang-2.3.1.tar.bz2
Download MD5 sum: bd46d1dc17a50c72004ad842829d7b1f
Download size: 1.5 MB
Estimated disk space required: 41 MB (with tests)
Estimated build time: 0.6 SBU (with tests)
libpng-1.6.31, PCRE-8.41, and Oniguruma
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/slang
This package does not support parallel build.
Install slang by running the following commands:
./configure --prefix=/usr \ --sysconfdir=/etc \ --with-readline=gnu && make -j1
To test the results, issue: make check. Note that this will also create a static version of the library which will then be installed in the next step.
Now, as the root
user:
make install_doc_dir=/usr/share/doc/slang-2.3.1 \ SLSH_DOC_DIR=/usr/share/doc/slang-2.3.1/slsh \ install-all && chmod -v 755 /usr/lib/libslang.so.2.3.1 \ /usr/lib/slang/v2/modules/*.so
--with-readline=gnu
: This
parameter sets GNU Readline to be
used by the parser interface instead of the slang internal version.
make install_doc_dir=/usr/share/doc/slang-2.3.1 SLSH_DOC_DIR=/usr/share/doc/slang-2.3.1/slsh install-all: This command installs the static library as well as the dynamic shared version and related modules. It also changes the documentation installation directories to a versioned directory.
Last updated on 2017-08-23 17:35:52 -0700