Beginner

From GCompris
Revision as of 20:31, 12 August 2010 by Fionnziegler (talk | contribs)
Jump to: navigation, search

Getting started current branch 9.X

Short guide to get started for newcomers to GCompris/Linux development. This is tested with ubuntu 9.10 and 10.04. It's from scratch to your first own activity.


Git download

git clone git://git.gnome.org/gcompris
cd gcompris
git checkout -b gcomprixogoo origin/gcomprixogoo
cd gcompris

build gcompris development dependencies:

sudo apt-get build-dep gcompris

make sure you have the package "gnome-common" installed.

in gcompris folder:
sh autogen.sh && make

if you want do a 'sudo make install' You should be able to test a GCompris-Activity by running the following command in the 'src' directory:

sh runit.sh connect4-activity

Create a new own activity

In the 'src' directory:

sh createit.sh basuracatcher
make
sh runit.sh basuracatcher-activity/


You are also able to try the installed version by running:

make clean
sh autogen.sh
make
sudo make install
gcompris --experimental

Then happy coding in 'src/basuracatcher-activity/basuracatcher.py'

You can continue reading here

activity idea

activity implementation