Difference between revisions of "S-Lang"

From CBLFS
Jump to navigationJump to search
(I added the "Contents" section from BLFS.)
Line 2: Line 2:
 
|-valign="top"
 
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://gd.tuwien.ac.at/editors/davis/slang/v2.0/slang-2.0.6.tar.bz2
+
| ftp://space.mit.edu/pub/davis/slang/v{{S-Lang-Version}}/slang-{{S-Lang-Version2}}.tar.bz2
 
|}
 
|}
  
Line 28: Line 28:
  
 
  make install-elf &&
 
  make install-elf &&
  chmod -v 755 /usr/lib/libslang.so.2.0.6
+
  chmod -v 755 /usr/lib/libslang.so.{{S-Lang-Version2}}
  
 
== Multilib ==
 
== Multilib ==
Line 44: Line 44:
  
 
  make install-elf &&
 
  make install-elf &&
  chmod -v 755 /usr/lib/libslang.so.2.0.6
+
  chmod -v 755 /usr/lib/libslang.so.{{S-Lang-Version2}}
  
 
=== N32 ===
 
=== N32 ===
Line 58: Line 58:
  
 
  make install-elf &&
 
  make install-elf &&
  chmod -v 755 /usr/lib32/libslang.so.2.0.6
+
  chmod -v 755 /usr/lib32/libslang.so.{{S-Lang-Version2}}
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 72: Line 72:
  
 
  make install-elf &&
 
  make install-elf &&
  chmod -v 755 /usr/lib64/libslang.so.2.0.6
+
  chmod -v 755 /usr/lib64/libslang.so.{{S-Lang-Version2}}
  
 
= Contents =
 
= Contents =

Revision as of 23:19, 16 December 2006

Download Source: ftp://space.mit.edu/pub/davis/slang/v2.2.1/slang-2.2.tar.bz2

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