From ab8294b55628bf9bae6a0e7c9cae326c7bf433f9 Mon Sep 17 00:00:00 2001 From: milleniumbug Date: Mon, 4 Apr 2016 16:11:53 +0200 Subject: [PATCH] added installation procedure for Mageia 5 --- docs/install.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/install.md b/docs/install.md index 2dea6af..c2a39fe 100644 --- a/docs/install.md +++ b/docs/install.md @@ -6,6 +6,7 @@ - [Debian stable/Linux Mint Debian Edition](#debian-stablelinux-mint-debian-edition) - [Arch Linux](#arch-linux) - [Fedora 23](#fedora-23) + - [Mageia 5](#mageia-5) - OS X - [Homebrew](#os-x-with-homebrew-httpbrewsh) - Windows @@ -89,6 +90,33 @@ make 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/) **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.**