Difference between revisions of "Hugin Compiling Ubuntu"

From PanoTools.org Wiki
Jump to navigation Jump to search
 
(Creation of page)
Line 1: Line 1:
 +
These instructions were tested on a blank installation of Kubuntu 6.06 (Edgy Eft) on a AMD64 computer. Apart from the odd change in package name, nothing should be substantially different (and if does not work, please leave a comment [http://theseblog.free.fr/2007/10/building-hugin-in-ubuntu-feisty-fawn.php here].
 +
 +
== Building environment ==
 +
Since we are going to build hugin (and libpano13) we need to download and install all the development packages. This is very easy with apt-get.
 +
In a terminal window (K menu/System/Konsole)
 +
 +
<code>sudo apt-get install build-essential autoconf automake1.9 libtool flex bison gdb libc6-dev-amd64 lib64gcc1
 +
 +
sudo apt-get install subversion
 +
</code>
 +
 +
== Building libpano13 ==
 +
 +
To build libpano13 we need some libraries and their dev package:
 +
 +
We then need to download the source code from SVN
 +
 +
<code>svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13
 +
 +
cd libpano13
 +
 +
./bootstrap</code>
 +
 +
 +
== Building hugin ==
 +
 +
 +
 
Reference: [http://theseblog.free.fr/2007/10/building-hugin-in-ubuntu-feisty-fawn.php]
 
Reference: [http://theseblog.free.fr/2007/10/building-hugin-in-ubuntu-feisty-fawn.php]

Revision as of 16:15, 3 November 2007

These instructions were tested on a blank installation of Kubuntu 6.06 (Edgy Eft) on a AMD64 computer. Apart from the odd change in package name, nothing should be substantially different (and if does not work, please leave a comment here.

Building environment

Since we are going to build hugin (and libpano13) we need to download and install all the development packages. This is very easy with apt-get. In a terminal window (K menu/System/Konsole)

sudo apt-get install build-essential autoconf automake1.9 libtool flex bison gdb libc6-dev-amd64 lib64gcc1

sudo apt-get install subversion

Building libpano13

To build libpano13 we need some libraries and their dev package:

We then need to download the source code from SVN

svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13

cd libpano13

./bootstrap


Building hugin

Reference: [1]