Difference between revisions of "Beginner"
Fionnziegler (talk | contribs) (→Getting started current branch 9.X) |
Fionnziegler (talk | contribs) |
||
Line 26: | Line 26: | ||
make | make | ||
sh runit.sh basuracatcher-activity/ | sh runit.sh basuracatcher-activity/ | ||
+ | </pre> | ||
+ | |||
+ | |||
+ | You are also able to try the installed version by running: | ||
+ | <pre> | ||
+ | make clean | ||
+ | sh autogen.sh | ||
+ | make | ||
+ | sudo make install | ||
+ | gcompris --experimental | ||
</pre> | </pre> | ||
Revision as of 19:31, 12 August 2010
Contents
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