A page in your DokuWiki was added or changed. Here are the details: Date : 2013/12/28 23:17 Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0 IP-Address : 79.207.210.167 Hostname : p4FCFD2A7.dip0.t-ipconnect.de Old Revision: http://wiki.x2go.org/doku.php/wiki:development:buildguide?rev=1362749499 New Revision: http://wiki.x2go.org/doku.php/wiki:development:buildguide Edit Summary: removed User : sunweaver @@ -1,48 +1 @@ - ===== Building from source ===== - - ==== Create a place to work in ==== - - Create a folder somewhere, whatever you prefer, but I would recommend to keep all the code in the same place. For example create one in you home directory - - <code> - mkdir -p ~/code/x2go && cd ~/code/x2go - </code> - - ==== Get the sources ==== - - First, you have to get the [[wiki:development:git|sources]]. There is already a "ready to clone" snippet [[wiki:development:git#checkout_all_repos| here]], to be pasted in any bash terminal. - - You should now have cloned all repositories actually shown [[http://code.x2go.org/gitweb|at the gitweb here]]. - - ==== Get the build and development dependencies ==== - - Then you should use your favorite available packet manager to install the build dependencies although I'm not 100% sure wether we need all of them or some are optional... - - <code> - sudo apt-get install build-essential qt4-designer qtcreator qtcreator-doc \ - qt4-demos qt4-doc qt4-dev-tools libqt4-dev git \ - qt-sdk libldap2-dev libssh-dev libxpm-dev libcups2-dev \ - debhelper doxygen man2html-base - </code> - - ==== Build the actual code ==== - - Before you build, consider this: when you're on the master branch, you're on the bleeding edge. This could contain any sort of errors or experimental code. Have a look at the available tags: - - <code> - git tag - </code> - - Also, you might want to have in mind, that the actual build is based on the branch **build-main**. Have a look at what's there with - - <code> - git branch <TAB><TAB> - </code> - - Change to the branch or tag of project you want to build and **build the project** with: - - <code> - debuild -us -uc - </code> - -- This mail was generated by DokuWiki at http://wiki.x2go.org/