S-Lang: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 9: | Line 9: | ||
== Introduction to S-Lang == | == Introduction to S-Lang == | ||
<Package Description Needed> | |||
== Dependencies == | == Dependencies == | ||
Revision as of 21:56, 11 January 2007
| Download Source: | ftp://space.mit.edu/pub/davis/slang/v2.2.1/slang-2.2.tar.bz2 |
|---|
Introduction to S-Lang
<Package Description Needed>
Dependencies
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc --with-readline=gnu && make && make elf
Install the package
make install-elf && chmod -v 755 /usr/lib/libslang.so.2.2
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr --sysconfdir=/etc \
--with-readline=gnu &&
make &&
make elf
Install the package
make install-elf && chmod -v 755 /usr/lib/libslang.so.2.2
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --sysconfdir=/etc \
--libdir=/usr/lib32 --with-readline=gnu &&
make &&
make elf
Install the package
make install-elf && chmod -v 755 /usr/lib32/libslang.so.2.2
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --sysconfdir=/etc \
--libdir=/usr/lib64 --with-readline=gnu &&
make &&
make elf
Install the package
make install-elf && chmod -v 755 /usr/lib64/libslang.so.2.2
Contents
| Installed Programs: | slsh |
|---|---|
| Installed Libraries: | libslang.{so,a} and numerous support modules |
| Installed Directories: | /usr/lib/slang, /usr/share/doc/slang and /usr/share/slsh |
Short Descriptions
| slsh | is a simple program for interpreting S-Lang scripts. It supports dynamic loading of S-Lang modules and includes a Readline interface for interactive use. |
|---|