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:
authorBrendan Long <self@brendanlong.com>2018-04-22 01:36:14 +0300
committerBrendan Long <self@brendanlong.com>2018-04-22 01:41:03 +0300
commite78fe6c464ec1c7b14ff839e0dace36635bbd0cd (patch)
treee972477277d76d88db16600584a5c971a01b6c1a
parentf972ffb3f153437f8c55aed0826f91b70c09f5b1 (diff)
Minor improvemnts to install_ubuntu.sh
- Move to subdirectory - Point our repo - Add a little bit of context to the README - Don't run the whole script as sudo - Don't pass -y to apt-get since these commands may do things users don't want and this script is intended to be run interactively anyway
-rw-r--r--README.md6
-rw-r--r--scripts/install_ubuntu.sh (renamed from install_ubuntu.sh)8
2 files changed, 9 insertions, 5 deletions
diff --git a/README.md b/README.md
index 75002554..a9bea523 100644
--- a/README.md
+++ b/README.md
@@ -57,8 +57,12 @@ sudo zypper install feedreader
```
### Ubuntu : <br/>
+
+The easiest way to install the latest FeedReader right now is to build from source,
+which you can do with this script:
+
```bash
-curl https://raw.githubusercontent.com/sirredbeard/FeedReader/master/install_ubuntu.sh | sudo bash
+curl https://raw.githubusercontent.com/jangernert/FeedReader/master/scripts/install_ubuntu.sh | bash
```
### Flatpak
diff --git a/install_ubuntu.sh b/scripts/install_ubuntu.sh
index be24ff32..c33abc87 100644
--- a/install_ubuntu.sh
+++ b/scripts/install_ubuntu.sh
@@ -1,8 +1,8 @@
#!/bin/bash
-sudo add-apt-repository ppa:vala-team -y
+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
+sudo apt-get upgrade
+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
cd /tmp/
git clone --recursive https://github.com/jangernert/FeedReader
cd ./FeedReader
@@ -11,4 +11,4 @@ cd ./build
cmake ..
make
sudo make install
-rm -r /tmp/FeedReader*
+sudo rm -r /tmp/FeedReader