Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: dmoore on October 10, 2013, 10:21:40 pm

Title: Quick build from source on Ubuntu/Debian in 8 lines
Post by: dmoore on October 10, 2013, 10:21:40 pm
Useful to me, if noone else...

Code
sudo apt-get install subversion
svn checkout svn://svn.code.sf.net/p/codeblocks/code/trunk codeblocks
sudo apt-get build-dep codeblocks
cd codeblocks
./bootstrap
./configure --with-contrib-plugins=all --prefix=/opt/codeblocks-svn
make
sudo make install

 ;D

(This will break, of course, as soon as the build dependencies in trunk differ from the build deps in the official repo.)
Title: Re: Quick build from source on Ubuntu/Debian in 8 lines
Post by: oBFusCATed on October 10, 2013, 10:42:38 pm
I thought there is an easier way to trigger a .deb package build, which will handle dependencies.
And Jens keeps them updated in trunk, I'm sure.