Browse Source

added installation procedure for Mageia 5

merge-requests/365/head
milleniumbug 10 years ago
parent
commit
ab8294b556
  1. 28
      docs/install.md

28
docs/install.md

@ -6,6 +6,7 @@
- [Debian stable/Linux Mint Debian Edition](#debian-stablelinux-mint-debian-edition) - [Debian stable/Linux Mint Debian Edition](#debian-stablelinux-mint-debian-edition)
- [Arch Linux](#arch-linux) - [Arch Linux](#arch-linux)
- [Fedora 23](#fedora-23) - [Fedora 23](#fedora-23)
- [Mageia 5](#mageia-5)
- OS X - OS X
- [Homebrew](#os-x-with-homebrew-httpbrewsh) - [Homebrew](#os-x-with-homebrew-httpbrewsh)
- Windows - Windows
@ -89,6 +90,33 @@ make
sudo make install sudo make install
``` ```
## Mageia 5
**Mageia doesn't support LLDB, but you can compile without debug support.**
Install dependencies:
32-bit:
```sh
sudo urpmi git cmake make gcc-c++ clang libclang-devel libboost-devel libgtkmm3.0-devel libgtksourceviewmm3.0-devel libaspell-devel aspell-en
```
64-bit:
```sh
sudo urpmi git cmake make gcc-c++ clang lib64clang-devel lib64boost-devel lib64gtkmm3.0-devel lib64gtksourceviewmm3.0-devel lib64aspell-devel aspell-en
```
Get juCi++ source, compile and install:
```sh
git clone --recursive https://github.com/cppit/jucipp
mkdir jucipp/build
cd jucipp/build
cmake -DCMAKE_CXX_COMPILER=g++ ..
make
sudo make install
```
## OS X with Homebrew (http://brew.sh/) ## OS X with Homebrew (http://brew.sh/)
**Installing llvm may take some time, and you need to follow the lldb code signing instructions. For an easier dependency install, but without debug support, remove `--with-lldb` below.** **Installing llvm may take some time, and you need to follow the lldb code signing instructions. For an easier dependency install, but without debug support, remove `--with-lldb` below.**

Loading…
Cancel
Save