Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typos, changed shebang, changed apt-get to apt #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 20 additions & 21 deletions Ubuntu/English Version Ubuntu.sh
Original file line number Diff line number Diff line change
@@ -1,51 +1,50 @@

#!/bin/bash
#!/bin/sh

echo Welcome to the script to install DIN on Ubuntu

echo Installing Dependencies

echo Installling boost
echo Installing boost

sudo apt-get install libboost-all-dev
sudo apt install libboost-all-dev

echo Installing openGL

sudo apt-get update
sudo apt update

sudo apt-get install freeglut3
sudo apt install freeglut3

sudo apt-get install freeglut3-dev
sudo apt install freeglut3-dev

sudo apt-get install binutils-gold
sudo apt install binutils-gold

sudo apt-get install g++
sudo apt install g++

sudo apt-get install libglew-dev
sudo apt install libglew-dev

sudo apt-get install mesa-common-dev
sudo apt install mesa-common-dev

sudo apt-get install libglew1.5-dev libglm-dev
sudo apt install libglew1.5-dev libglm-dev

echo Installing SDL

sudo apt-get install libsdl
sudo apt install libsdl

sudo apt-get install libsdl-dev
sudo apt install libsdl-dev

echo Installing tcl

sudo apt-get install tcl8.5
sudo apt install tcl8.5

sudo apt-get install tcl8.5-dev
sudo apt install tcl8.5-dev

echo Installing jack

sudo apt-get install jack
sudo apt install jack

sudo apt-get install libjackd2
sudo apt install libjackd2

sudo apt-get install libjack-jackd2-dev
sudo apt install libjack-jackd2-dev

echo Adding the user to the audio group

Expand All @@ -57,9 +56,9 @@ sudo apt-get -f install

echo Installing subversion and autoreconf

sudo apt-get install subversion
sudo apt install subversion

sudo apt-get install dh-autoreconf
sudo apt install dh-autoreconf

echo Downloading DIN source code

Expand Down