Activities/GCompris: Difference between revisions
RafaelOrtiz (talk | contribs) |
|||
| Line 26: | Line 26: | ||
* on startup, if resumed object is shared by teacher, GCompris will sync settings with teacher's object | * on startup, if resumed object is shared by teacher, GCompris will sync settings with teacher's object | ||
* After completing GCompris activity, results will be sent to teacher and stored to student's object; later, this object could be opened by GCompris Administration activity to see these results | * After completing GCompris activity, results will be sent to teacher and stored to student's object; later, this object could be opened by GCompris Administration activity to see these results | ||
== Install == | |||
Attach one of [[Community/Distributions/Sweets_Distribution|Sweets Distribution]] [http://download.sugarlabs.org/packages/SweetsDistribution:/ repositories] and install the following packages: | |||
* {{Code|sweets-gcompris}}, main package that contains Sugar activity and {{Code|sweets-gcompris}} application; weights ~150Mb; | |||
* {{Code|sweets-administration}}, GCompris Administration activity; only Sugar activity. | |||
== Build from sources == | == Build from sources == | ||
| Line 37: | Line 44: | ||
mkdir -p ~/src/gcompris | mkdir -p ~/src/gcompris | ||
cd ~/src/gcompris | cd ~/src/gcompris | ||
wget | wget https://obs.sugarlabs.org/public/source/sdk/polyol/polyol-1.3.tar.gz | ||
tar xzpvf polyol-1. | tar xzpvf polyol-1.3.tar.gz | ||
wget | wget https://obs.sugarlabs.org/public/source/gcompris/gcompris/gcompris-12.1.tar.gz | ||
tar xzpvf gcompris- | tar xzpvf gcompris-12.1.tar.gz | ||
Build Polyol: | Build Polyol: | ||
cd ~/src/gcompris/polyol-1. | cd ~/src/gcompris/polyol-1.3 | ||
cmake -DCMAKE_INSTALL_PREFIX=$HOME/Activities/gcompris.activity && make && make install | cmake -DCMAKE_INSTALL_PREFIX=$HOME/Activities/gcompris.activity && make && make install | ||
Build GCompris: | Build GCompris: | ||
cd ~/src/gcompris/gcompris- | cd ~/src/gcompris/gcompris-12.1 | ||
./configure PKG_CONFIG_PATH=$HOME/Activities/gcompris.activity/lib/pkgconfig --prefix=$HOME/Activities/gcompris.activity --enable-gnet --enable-sugar --enable-sqlite && make && make install | ./configure PKG_CONFIG_PATH=$HOME/Activities/gcompris.activity/lib/pkgconfig --prefix=$HOME/Activities/gcompris.activity --enable-gnet --enable-sugar --enable-sqlite && make && make install | ||