Tk: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 30: | Line 30: | ||
make install-private-headers && | make install-private-headers && | ||
ln -v -sf wish{{Tk-Version2}} /usr/bin/wish | ln -v -sf wish{{Tk-Version2}} /usr/bin/wish | ||
== Multilib == | == Multilib == | ||
Revision as of 10:02, 27 January 2007
| Download Source: | http://downloads.sourceforge.net/tcl/tk8.5.7-src.tar.gz |
|---|
Introduction to Tk
<Package Description Needed>
Dependencies
Required
Non-Multilib
Compile the package:
cd unix && ./configure --prefix=/usr --enable-threads && make
Install the package
make install && make install-private-headers && ln -v -sf wish8.5 /usr/bin/wish
Multilib
32Bit
Compile the package:
cd unix &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr \
--enable-threads --x-libraries=${XORG_PREFIX}/lib &&
make
Install the package
make install
N32
Compile the package:
cd unix &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
--enable-threads --x-libraries=${XORG_PREFIX}/lib32 &&
make
Install the package
make install
64Bit
Compile the package:
cd unix &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
--enable-threads --x-libraries=${XORG_PREFIX}/lib64 &&
make
Install the package
make install && make install-private-headers && ln -v -sf wish8.5 /usr/bin/wish
Contents
| Installed Programs: | wish and wish8.5 |
|---|---|
| Installed Libraries: | libtk.so and libtkstub8.5.a |
| Installed Directories: | /usr/lib/tk8.5 |
Short Descriptions
| wish | is a symlink to the wish8.4 program. |
|---|---|
| wish8.5 | is a simple shell containing the Tk toolkit that creates a main window and then processes Tcl commands. |
| libtk.so | contains the API functions required by Tk. |