Author Topic: Quick build from source on Ubuntu/Debian in 8 lines  (Read 9330 times)

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Quick build from source on Ubuntu/Debian in 8 lines
« 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.)

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Quick build from source on Ubuntu/Debian in 8 lines
« Reply #1 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.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]