From 0609e38f64b402c070485a02cb3d9b5ffd1924f3 Mon Sep 17 00:00:00 2001 From: milleniumbug Date: Wed, 23 Mar 2016 00:02:30 +0100 Subject: [PATCH] Added installation instructions for Fedora 23 Fixes Issue #123 for Fedora --- docs/install.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/install.md b/docs/install.md index 7d8d7f0..2dea6af 100644 --- a/docs/install.md +++ b/docs/install.md @@ -5,6 +5,7 @@ - [Debian testing/Linux Mint/Ubuntu](#debian-testinglinux-mintubuntu) - [Debian stable/Linux Mint Debian Edition](#debian-stablelinux-mint-debian-edition) - [Arch Linux](#arch-linux) + - [Fedora 23](#fedora-23) - OS X - [Homebrew](#os-x-with-homebrew-httpbrewsh) - Windows @@ -72,6 +73,22 @@ make sudo make install ``` +## Fedora 23 +Install dependencies: +```sh +sudo dnf install git cmake make gcc-c++ clang-devel clang lldb-devel boost-devel gtksourceviewmm3-devel gtkmm30-devel aspell-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.**