Vala - building from source

From RidgeRun Developer Wiki
Revision as of 23:23, 30 January 2014 by Tfischer (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Getting source

It is recommend to use a tagged version of the code, such as 0.12 in the example below.

git clone git://git.gnome.org/vala
git branch -r
git checkout origin/0.12 -b rel_0.12

Building

By default, `make install' will install all the files in `/usr/local/bin', `/usr/local/lib' etc. For Ubuntu, /usr is a better prefix.

NOCONFIGURE=true ./autogen.sh
./configure prefix=/usr
make

Find already installed vala on your host

whereis valac
ls -d /usr/*/vala-*
ls -ltr /usr/bin | fgrep vala

Installing updated version

valac --version
sudo make install
valac --version