Skip to content
This repository has been archived by the owner on Dec 12, 2019. It is now read-only.

Build on GNU Linux

pierobot edited this page Mar 8, 2016 · 22 revisions

#####GNU/Linux Install icu, boost, zlib, libzip, and unrar if you haven't already.

sudo apt-get install build-essential cmake libicu-dev libboost-dev zlib1g-dev libzip-dev 

If you're going to build with TLS/SSL support, then you'll need OpenSSL.

sudo apt-get install libssl-dev

Download, build, and install the unrar library.

wget http://www.rarlab.com/rar/unrarsrc-5.3.11.tar.gz && tar -zxvf unrarsrc-5.3.11.tar.gz && cd unrar && make lib && sudo make install-lib && sudo mkdir /usr/local/include/unrar && sudo cp *.hpp /usr/local/include/unrar

Download this project and compile.

git clone https://github.com/pierobot/mangapp-server && cd mangapp-server && mkdir build && cd build && cmake ../. && make
Clone this wiki locally