Geany: Difference between revisions

From Oh Mad Lab
Jump to navigation Jump to search
(New page: == Installing Geany on Debian Squeeze == === Get a few required packages === aptitude install build-essential autoconf automake libgtk2.0-dev libgtk2.0-dev intltool === Download and bui...)
 
(No difference)

Latest revision as of 10:03, 27 April 2013

Installing Geany on Debian Squeeze

Get a few required packages

aptitude install build-essential autoconf automake libgtk2.0-dev libgtk2.0-dev intltool

Download and build the latest libtool

mkdir /share/libtool
cd /share/libtool
wget http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz
tar xvf libtool-2.4.2.tar.gz 
cd libtool-2.4.2
./configure
make
make install

Download and build the latest Geany

mkdir /share/geany
cd /share/geany
wget http://download.geany.org/geany-1.23.tar.gz
tar xvf geany-1.23.tar.gz
cd geany-1.23
./autogen.sh
make
make install