-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a little bug in removing files. Now all the files shoud be deleted, even the hidden ones.
- Loading branch information
1 parent
cd44e56
commit 3b745fd
Showing
4 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Installer for Stremio on Arch Linux | ||
clear | ||
|
||
# Downloading the dependencies | ||
echo "Installing Stremio" | ||
echo "__________________" | ||
sleep 1s | ||
sudo pacman -S git wget librsvg nodejs mpv openssl make gcc qt5-base qt5-webengine qt5-quickcontrols qt5-quickcontrols2 | ||
|
||
# Downloading Stremio | ||
echo "Downloading Stremio" | ||
echo "___________________" | ||
cd ~/Documents && mkdir github && cd github | ||
git clone --recurse-submodules https://github.com/Stremio/stremio-shell.git | ||
cd stremio-shell | ||
|
||
# Compiling and installing Stremio | ||
echo "Compiling and installing stremio" | ||
echo "________________________________" | ||
qmake | ||
make -f release.makefile | ||
sudo make -f release.makefile install | ||
sudo ./dist-utils/common/postinstall | ||
|
||
# Cleanup all the files | ||
rm -rf * | ||
cd .. && rmdir stremio-shell | ||
cd .. && rmdir github | ||
|
||
|
||
echo DONE!!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters