Difference between revisions of "S-Lang"
From CBLFS
Jump to navigationJump to search (I added the package description from BLFS.) |
(I added the "Contents" section from BLFS.) |
||
Line 1: | Line 1: | ||
{| style="text-align: left; background-color: AliceBlue;" | {| style="text-align: left; background-color: AliceBlue;" | ||
− | |- | + | |-valign="top" |
!Download Source: | !Download Source: | ||
| http://gd.tuwien.ac.at/editors/davis/slang/v2.0/slang-2.0.6.tar.bz2 | | http://gd.tuwien.ac.at/editors/davis/slang/v2.0/slang-2.0.6.tar.bz2 | ||
Line 73: | Line 73: | ||
make install-elf && | make install-elf && | ||
chmod -v 755 /usr/lib64/libslang.so.2.0.6 | chmod -v 755 /usr/lib64/libslang.so.2.0.6 | ||
+ | |||
+ | = Contents = | ||
+ | |||
+ | {| style="text-align: left;" | ||
+ | |-valign="top" | ||
+ | ! Installed Programs: | ||
+ | | slsh | ||
+ | |-valign="top" | ||
+ | ! Installed Libraries: | ||
+ | | libslang.{so,a} and numerous support modules | ||
+ | |-valign="top" | ||
+ | ! Installed Directories: | ||
+ | | /usr/lib/slang, /usr/share/doc/slang and /usr/share/slsh | ||
+ | |} | ||
+ | |||
+ | === Short Descriptions === | ||
+ | |||
+ | {| style="text-align: left;" | ||
+ | |-valign="top" | ||
+ | ! 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. | ||
+ | |-valign="top" | ||
+ | |} |
Revision as of 16:10, 9 December 2006
Download Source: | http://gd.tuwien.ac.at/editors/davis/slang/v2.0/slang-2.0.6.tar.bz2 |
---|
Contents
Introduction to S-Lang
The S-Lang package contains the S-Lang library, which provides facilities such as display/screen management, keyboard input, and keymaps.
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.0.6
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.0.6
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.0.6
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.0.6
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. |
---|