This repository has been archived by the owner on Dec 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Build on GNU Linux
pierobot edited this page Mar 14, 2016
·
22 revisions
###This hasn't been updated for mstch and opencv.
#####GNU/Linux If your distribution has an old version of cmake you can do the following to get cmake 3.x without building it yourself
sudo apt-add-repository ppa:george-edison55/precise-backports
sudo apt-get update
Install icu, boost, zlib, libzip, unrar, and OpenSSL if you haven't already.
sudo apt-get install build-essential cmake libicu-dev libboost-dev zlib1g-dev libzip-dev 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, build, and install the mstch library.
git clone https://github.com/no1msd/mstch && cd mstch && mkdir build && cd build && cmake ../. && make && make install
Download this project and compile.
git clone https://github.com/pierobot/mangapp-server && cd mangapp-server && mkdir build && cd build && cmake ../. && make