This is an old revision of the document!
−Table of Contents
Building liblcf with GNU Build System
Requirements
- g++ or clang
- make
- pkg-config
- libtool
- GNU iconv (already included in most distributions in libc) (Not required for Windows)
- GNU Gettext development files (Required for iconv detecion)
- Expat (for XML reading support)
Build
- Run:
./configure --prefix /usr
sudo make install
Step by step setup for Debian based distros (gNewSense, Trisquel, Debian, Mint, Ubuntu...)
- Open the Terminal application
- Copy the following text and paste it in your terminal window and press the enter key, you will need to enter your password and press again the enter key:
sudo apt-get -y install --no-install-recommends git make automake libtool g++ gettext libexpat1-dev
mkdir ~/EasyRPG
cd ~/EasyRPG
git clone https://github.com/EasyRPG/liblcf.git
cd liblcf
autoreconf -i
./configure --prefix /usr
sudo make install
Step by step setup for Fedora
- Open the Terminal application
- Copy the following text and paste it in your terminal window and press the enter key, you will need to enter your password and press again the enter key:
sudo yum -y install git automake libtool gettext-devel expat-devel gcc-g++
mkdir ~/EasyRPG
cd ~/EasyRPG
git clone https://github.com/EasyRPG/liblcf.git
cd liblcf
autoreconf -i
./configure --prefix /usr
sudo make install
Installation on Arch Linux
There is an AUR package available, you can use your favourite aur helper or download and use makepkg:
$ packer -S liblcf-git
Additional help
Contact with us at https://webchat.freenode.net/?channels=easyrpg
The current build system maintainer is fdelapena