Difference between revisions of "Libstroke"

From CBLFS
Jump to navigationJump to search
m
Line 11: Line 11:
 
=== Required ===
 
=== Required ===
 
* [[X Window System]]
 
* [[X Window System]]
 +
 
=== Optional ===
 
=== Optional ===
 
* [[TCL]]
 
* [[TCL]]
Line 80: Line 81:
  
 
== Short Description ==
 
== Short Description ==
 +
 +
[[Category:General Libs]]

Revision as of 13:42, 8 February 2009

Download Source: http://www.etla.net/libstroke/libstroke-0.5.1.tar.gz

Introduction to Libstroke

LibStroke is a stroke translation library. Strokes are motions of the mouse that can be interpreted by a program as a command.

Project Homepage: Unknown

Dependencies

Required

Optional

Non-Multilib

Compile the package:

sed -i -e "/^EXTRA_DIST = $/d" \
       -e "/^\t#/d" lib{,g}stroke/Makefile.am &&
autoreconf -i && libtoolize -f &&
./configure --prefix=/usr &&
make

Install the LibStroke package:

make install

Multilib

32Bit

Compile the package:

sed -i -e "/^EXTRA_DIST = $/d" \
       -e "/^\t#/d" lib{,g}stroke/Makefile.am &&
autoreconf -i && libtoolize -f &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make

Install the package:

make install

N32

To do...

64Bit

Compile the package:

sed -i -e "/^EXTRA_DIST = $/d" \
       -e "/^\t#/d" lib{,g}stroke/Makefile.am &&
autoreconf -i && libtoolize -f &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make

Install the package:

make install

Contents

Installed Directories: None
Installed Programs: None
Installed Libraries: libstroke.{a,la,so}, libgstroke.{a,la,so}

Short Description