Browse Source

NetBSD build instructions

merge-requests/413/head
vazub 4 years ago
parent
commit
58abd35e4e
  1. 21
      docs/install.md

21
docs/install.md

@ -9,6 +9,7 @@
- [OpenSUSE Tumbleweed](#opensuse-tumbleweed) - [OpenSUSE Tumbleweed](#opensuse-tumbleweed)
- [GNU Guix/GuixSD](#gnu-guixguixsd) - [GNU Guix/GuixSD](#gnu-guixguixsd)
- [FreeBSD](#freebsd) - [FreeBSD](#freebsd)
- [NetBSD](#netbsd)
- MacOS - MacOS
- [Homebrew](#macos-with-homebrew-httpbrewsh) - [Homebrew](#macos-with-homebrew-httpbrewsh)
- Windows - Windows
@ -134,6 +135,26 @@ guix install jucipp
On FreeBSD, latest release of juCi++ is available through the port: jucipp. On FreeBSD, latest release of juCi++ is available through the port: jucipp.
## NetBSD
Install dependencies:
```sh
pkgin -y install lldb ccache doxygen pkg-config aspell-en libgit2 gtksourceviewmm exctags boost
```
Get juCi++ source, compile and install:
```sh
git clone --recursive https://gitlab.com/cppit/jucipp
mkdir -p jucipp/build
cd jucipp/build
cmake -DCMAKE_INSTALL_PREFIX=/usr/pkg ..
make
su -m
make install
```
## MacOS with Homebrew (http://brew.sh/) ## MacOS with Homebrew (http://brew.sh/)
Install dependencies: Install dependencies:

Loading…
Cancel
Save