Difference between revisions of "Geany"
Weibullguy (talk | contribs) |
|||
Line 120: | Line 120: | ||
|is a lightweight, Gtk2-based IDE. | |is a lightweight, Gtk2-based IDE. | ||
|} | |} | ||
+ | |||
+ | [[Category:Programming]] |
Latest revision as of 15:57, 19 March 2009
Download Source: | http://prdownloads.sourceforge.net/geany/geany-0.14.tar.bz2 |
---|---|
Download Patch: | http://svn.cross-lfs.org/svn/repos/patches/geany/geany-0.14-R_highlighting-1.patch |
Contents
Introduction to Geany
Geany is a Gtk2-based IDE that is not "tied" to a desktop environment like KDevelop (KDE) and Anjuta (GNOME). It only requires Gtk runtime libraries. Geany supports C, C++, Java, PHP, XML, HTML, Python, Perl, and Pascal.
Project Homepage: http://geany.uvena.de/Main/HomePage
Dependencies
Required
Optional
Configuration Information
The following options can be passed to the configure script.
--disable-vte: disables virtual termninal support. |
--enable-the-force: enable if you are Luke Skywalker and the force is with you. |
Non-Multilib
Apply the optional patch to add syntax highlighting for R and S-Plus scripts:
patch -Np1 -i ../geany-0.14-R_highlighting-1.patch
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
This package does not provide any libraries so only one installation is required.
32Bit
Apply the optional patch to add syntax highlighting for R and S-Plus scripts:
patch -Np1 -i ../geany-0.14-R_highlighting-1.patch
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=/usr && make
Install the package:
make install
N32
Apply the optional patch to add syntax highlighting for R and S-Plus scripts:
patch -Np1 -i ../geany-0.14-R_highlighting-1.patch
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package:
make install
64Bit
Apply the optional patch to add syntax highlighting for R and S-Plus scripts:
patch -Np1 -i ../geany-0.14-R_highlighting-1.patch
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package:
make install
Contents
Installed Directories: | /usr/share/geany |
---|---|
Installed Programs: | geany |
Installed Libraries: | None |
Symlinks: | None |
Short Descriptions
geany | is a lightweight, Gtk2-based IDE. |
---|