From 9ffc98c459cd5d17a7f556d0e27fff419a4e6cce Mon Sep 17 00:00:00 2001 From: Grant Miller Date: Fri, 6 Mar 2020 07:37:29 +0200 Subject: [PATCH 1/2] Added build notes for Ubuntu 18.04 --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index cc464b01..faf2bf00 100644 --- a/README.md +++ b/README.md @@ -63,3 +63,16 @@ For advanced users! sudo make install If you are building on a distribution which is not elementary, you need to add `-Dnoele=1` when running cmake. + +### How to Build on Ubuntu +You need a couple of additional packages to be installed before you can build from source on Ubuntu: + + sudo apt-get install cmake pkg-config libgtk-3-dev libgranite-dev libmarkdown2-dev libgtkspell3-3-dev libsqlite3-dev libgtksourceview-3.0-dev libwebkit2gtk-4.0-dev valac + git clone https://github.com/Philip-Scott/Notes-up + cd Notes-up + mkdir build && cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr ../ -Dnoele=1 + make + sudo make install + + From 3e275b86bf3ea404bbf728fad02ac543aa41d3d4 Mon Sep 17 00:00:00 2001 From: Grant Miller Date: Fri, 6 Mar 2020 07:38:50 +0200 Subject: [PATCH 2/2] Specified Ubuntu version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index faf2bf00..28c638ab 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ For advanced users! If you are building on a distribution which is not elementary, you need to add `-Dnoele=1` when running cmake. ### How to Build on Ubuntu -You need a couple of additional packages to be installed before you can build from source on Ubuntu: +You need a couple of additional packages to be installed before you can build from source on Ubuntu 18.04 sudo apt-get install cmake pkg-config libgtk-3-dev libgranite-dev libmarkdown2-dev libgtkspell3-3-dev libsqlite3-dev libgtksourceview-3.0-dev libwebkit2gtk-4.0-dev valac git clone https://github.com/Philip-Scott/Notes-up