Add package installation to install.sh
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
8cb83209a7
commit
9c36744401
3 changed files with 168 additions and 5 deletions
13
install.sh
13
install.sh
|
@ -4,12 +4,14 @@
|
|||
# Usage: ./install.sh
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
# TODO: Install yaourt
|
||||
# TODO: Install yaourt or else the next thing fails
|
||||
|
||||
# Install packages - "yaourt -Qqe > packages.list"
|
||||
yaourt -S $(cat "$DIR/yaourt/packages.list")
|
||||
|
||||
# Install aur packages - "yaourt -Qqm > packages.aur.list"
|
||||
yaourt -S --noconfirm $(cat "$DIR/yaourt/packages.aur.list")
|
||||
|
||||
# TODO: Install needed packages
|
||||
# google-chrome-beta
|
||||
# vlc
|
||||
# steam
|
||||
|
||||
# TODO: Create a function that makes the linking easier and that checks if
|
||||
# the links already exists
|
||||
|
@ -38,6 +40,7 @@ ln -s "$DIR/bin" "$HOME/bin"
|
|||
chmod +x "$HOME/bin/*"
|
||||
|
||||
# Download and install composer
|
||||
# TODO: Install this using yaourt
|
||||
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
||||
php composer-setup.php
|
||||
php -r "unlink('composer-setup.php');"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue