Libstroke: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) Created page. |
No edit summary |
||
| Line 5: | Line 5: | ||
|} | |} | ||
= Introduction to LibStroke = | == 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. | LibStroke is a stroke translation library. Strokes are motions of the mouse that can be interpreted by a program as a command. | ||
= | == Dependencies == | ||
Compile the | === Required === | ||
* [[X Window System]] | |||
=== Optional === | |||
* [[TCL]] | |||
* [[Gtk1]] | |||
== 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 && | ./configure --prefix=/usr && | ||
make | make | ||
Install the LibStroke package: | Install the LibStroke package: | ||
make install | make install | ||
= Multilib = | == 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... | 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 = | = Contents = | ||
== Short Description == | == Short Description == | ||
Revision as of 11:27, 25 December 2006
| Download Source: | ftp://ftp.geda.seul.org/pub/geda/dist/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.
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