-
-
Notifications
You must be signed in to change notification settings - Fork 491
Download%2FGit
SuperTux development is coordinated with the help of the Git version control system. In a nutshell, it's a file-storing facility that can be used by multiple users simultaneously, keeping track of changes and archiving old versions of files. You can find out more about Git in general on their homepage.
The SuperTux Git repository is accessible through GitHub, available here.
Anonymous read access to the repository is granted to everybody. You will first need to install Git; downloads, tutorials for setting up, and information about using Git are available on the Git website. Once you have installed Git, all you have to do to get your hands on the data is to use the following command in your terminal:
git clone --recursive https://github.com/SuperTux/supertux.git
This will create a new directory named supertux which contains the latest versions of the SuperTux source code and data. inside the supertux directory to update to the latest version in the repository. This will only download changed files to save bandwidth.
After you obtain the data from the repository, you will need to go through the building process to make a playable version of the game. Follow the instructions in the INSTALL file located in the supertux directory to do this.
Note that after any subsequent update from the Git repository you will likely need to repeat the building process to ensure that all new features are available.
Data for the SuperTux level editor is also available through the Git repository. Accessing the code in Google Code is done by changing the repository from default to editor. To obtain a local clone of the editor code use the command:
git clone https://github.com/SuperTuxTeam/supertux-editor.git
You will need to follow the installation instructions provided with the repository data.
An Ubuntu repository for the SVN version of SuperTux exists as a Launchpad PPA To install SuperTux from this repository, add ppa:stownsend42/supertux-svn to your Software Sources, then install the supertux-svn package. At this time, new packages are only being built for lucid (10.04) and maverick (10.10).
NOTE: THIS REPOSITORY IS NO LONGER MAINTAINED. NO NEW BUILDS WILL BE UPLOADED.
If anyone else would like to take up this project, please feel free to do so. If you need help, contact me at [email protected]
First add the public key to authenticate the repository by running the following:
wget -q https://supertux.lethargik.org/apt/supertux.key -O- | sudo apt-key add -
Then add the following to your repository sources (/etc/apt/sources.list or your favorite editor)
deb http://supertux.lethargik.org/apt VERSION contrib
Replace VERSION with your Debian version, e.g. lenny/squeeze/sid or stable/testing/unstable.
Finally, install the “supertux-svn” package.
If you have any problems with supertux on Gentoo or trouble understanding the instructions below, please contact binki
on #supertux
. He'll be glad to help if he can and to know that his ebuilds are useful ;-).
To install the latest and greatest development versions of supertux and supertux-editor, please grab my overlay. It includes a few other things than the live supertux ebuild, but if you're not running ~arch (you'll know if you are) this shouldn't affect your Gentoo installation. If you have any issues with the overlay itself, just contact binki
or file a bug. To install my overlay, first set up layman. Make sure that the subversion
and mercurial
useflags are set in /etc/make.conf
before emerging layman:
emerge -va layman
After layman is installed, it should print out instructions for modifying your make.conf
. This will enable portage to see ebuilds in layman-managed overlays. Recent versions of layman will suggest to add something lik the following to make.conf
:
source /var/lib/layman/make.conf
Then, install the overlays. SuperTux and its dependencies are spread between my overlay and the somewhat more official Sunrise User Overlay.
layman -f -a ohnobinki -a sunrise
Then, add the necessary package (dependencies of supertux and supertux itself) to /etc/portage/package.keywords
. If package.keywords
doesn't exist, you may create it in /etc/portage
. Deposit the following lines into this file:
dev-libs/findlocale
dev-libs/tinygettext
games-arcade/supertux
dev-games/supertux-editor
Now just emerge supertux and/or supertux-editor :-)
emerge -va supertux supertux-editor
If you are brave and want builds straight from SVN, place **
after the supertux and supertux-editor packages in package.keywords
:
games-arcade/supertux **
dev-games/supertux-editor **
I have provided a link to download packaged SVN builds for mac: Download/Supertux SVN Version Mac Monstertux 21:03, 13 April 2011 (UTC)
Category:Development Category:Meta Category:SuperTux Category:Development Category:Meta Category:SuperTux
Home
Guidelines
Game Mechanics
Tools
Engine
- Cameras in other games
- Collision
- Configuration File
- Console
- Cutscenes
- Game_Engine
- Lighting
- Map_transformer
- Portables
- SceneGraph
- Scripting
Specifications
Milestones
- Milestone 1 Analysis
- Milestone 2 Design Document
- Milestone 2 Design Document Old
- Milestone 3 Design Document
Building (mostly outdated)
- INSTALL.md
- Building
- Building on macOS
- Building SuperTux
- Building on Windows
- Building with MXE (cross-compile)
Meetings