Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHayden <33820650+sirredbeard@users.noreply.github.com>2018-04-21 23:44:45 +0300
committerGitHub <noreply@github.com>2018-04-21 23:44:45 +0300
commit956cf261072eae6c3cb4a25061cfa308389f4974 (patch)
tree042c0d22eb54f5f68e9fdff7b5889491068f02a8
parent03252229323d02eba1b2077dffc5a3f18b567aaf (diff)
Create install_ubuntu.sh
Shell script to manually download and install for Ubuntu. Tested on Ubuntu 18.04.
-rw-r--r--install_ubuntu.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/install_ubuntu.sh b/install_ubuntu.sh
new file mode 100644
index 00000000..839144f9
--- /dev/null
+++ b/install_ubuntu.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+sudo add-apt-repository ppa:vala-team
+sudo apt-get update
+sudo apt-get upgrade -y
+sudo apt-get install build-essential cmake valac pkg-config libgirepository1.0-dev libgtk-3-dev libsoup2.4-dev libjson-glib-dev libwebkit2gtk-4.0-dev libsqlite3-dev libsecret-1-dev libnotify-dev libxml2-dev librest-dev libgee-0.8-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgoa-1.0-dev libcurl4-gnutls-dev libpeas-dev -y
+cd /tmp/
+git clone --recursive https://github.com/jangernert/FeedReader
+cd ./FeedReader
+mkdir build
+cd ./build
+cmake ..
+make
+sudo make install
+rm -r /tmp/FeedReader*