Difference between revisions of "Building LÖVE"
(not done yet) |
(fedora dependancies) |
||
Line 22: | Line 22: | ||
</source> | </source> | ||
− | ==== Other | + | ==== Fedora ==== |
+ | <source lang="bash"> | ||
+ | yum install mercurial flac-devel freetype-devel glibc-devel libmpg123-devel libmodplug-devel physfs-devel mesa-libGL-devel openal-soft-devel DevIL-devel libvorbis-devel | ||
+ | </source> | ||
+ | |||
+ | ==== Other distributions ==== | ||
todo: add stuff here! | todo: add stuff here! | ||
Revision as of 00:28, 21 April 2011
Note: This page is still incomplete.
If you want to build the LÖVE source code yourself, this page has all the information you need.
Contents
Linux
Dependencies
You'll need Mercurial to download the latest sources, along with the LÖVE dependencies.
Ubuntu
sudo apt-get install mercurial
# todo: add stuff here!
Arch Linux
pacman -S mercurial
pacman -S devil flac freetype2 glibc libmodplug libvorbis lua mesa mpg123 openal physfs sdl # 0.6.x
pacman -S devil freetype2 libmodplug libvorbis lua mpg123 openal physfs # 0.7.x
Fedora
yum install mercurial flac-devel freetype-devel glibc-devel libmpg123-devel libmodplug-devel physfs-devel mesa-libGL-devel openal-soft-devel DevIL-devel libvorbis-devel
Other distributions
todo: add stuff here!
Getting the sources
The next step is downloading the LÖVE source code. Open a terminal and go to the directory that you want to download the source code folder to. Next, use the following commands:
hg clone https://bitbucket.org/rude/love && cd love
# if you want to use the source code of a specific version, issue one of the following commands:
# todo: add stuff here!
Building
sh platform/unix/automagic
./configure
make
Your LÖVE binary will end up in the src directory.