Difference between revisions of "Guile-GTK"
From CBLFS
Jump to navigationJump to searchLine 112: | Line 112: | ||
|Produces the Guile interface code for Gtk defs. | |Produces the Guile interface code for Gtk defs. | ||
|} | |} | ||
+ | |||
+ | [[Category:Programming]] |
Latest revision as of 16:57, 19 March 2009
Download Source: | ftp://ftp.gnu.org/gnu/guile-gtk/guile-gtk-2.1.tar.gz |
---|
Contents
Introduction to Guile-GTK
Guile-gtk is glue code to make GTK+ accesible from Guile so it provides a convenient interface for Scheme programmers to develop visual applications.
Project Homepage: http://www.gnu.org/software/guile-gtk
Dependencies
Required
Optional
Configuration Information
The following options may be passed to the configure script:
--with-gdk-pixbuf=<yes/no>: Compile the gtk-2.0 gdk-pixbuf module. |
--with-libglade=<yes/no> Compile the gtk-2.0 glade module. |
--with-libglade-modules=LIST Comma separated list of libglade modules to build. |
--with-gtkgl=<yes/no> Compile the gtk-2.0 gdk-gl and gtk-gl-area modules. |
Non-Multilib
Compile the package:
./configure --prefix=/usr --with-gtkgl=no && make
Install the package:
make install
Multilib
32Bit
Compile the package:
export USE_ARCH=32 && CC="gcc ${BUILD32}" PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" \ ./configure --prefix=/usr --with-gtkgl=no && make
Install the package:
make install && unset USE_ARCH
N32
Compile the package:
export USE_ARCH=n32 && CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" \ ./configure --prefix=/usr --libdir=/usr/lib32 \ --with-gtkgl=no && make
Install the package:
make install && unset USE_ARCH
64Bit
Compile the package:
export USE_ARCH=64 && CC="gcc ${BUILD64}" PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" \ ./configure --prefix=/usr --libdir=/usr/lib64 \ --with-gtkgl=no && make
Install the package:
make install && unset USE_ARCH
Contents
Installed Directories: | /usr/share/guile-gtk, /usr/share/guile/gtk-2.0, /usr/share/guile/gtk |
---|---|
Installed Programs: | build-guile-gtk build-guile-gtk-2.0 |
Installed Libraries: | libguilegtk-2.0.{a,so}, libguilegdkpixbuf-2.0.{a,so}, libguileglade-2.0.{a,so} |
Short Descriptions
build-guile-gtk-2.0 | Produces the Guile interface code for Gtk defs. |
---|