dotfiles/Makefile
2016-09-12 16:00:17 +01:00

38 lines
1.1 KiB
Makefile

DOTFILES=$(PWD)
install: apt bash bin config gnome yaourt
chmod +x $(DOTFILES)/deploy.sh
bin:
chmod +x $(DOTFILES)/bin/*
bash: yaourt
ln -sfP $(DOTFILES)/bash/.bashrc ~/.bashrc
ln -sfP /usr/share/nvm/init-nvm.sh ~/.nvm/nvm.sh
config: yaourt
mkdir -p ~/.config/terminator
cp $(DOTFILES)/config/terminator.conf ~/.config/terminator/config
gnome: yaourt
rm -rf ~/Templates/*
ln -sfP $(DOTFILES)/gnome/Templates/* ~/Templates/
yaourt: pacman hot\-fix
yaourt -Syau # Install any updates before extra packages
yaourt -S `cat $(DOTFILES)/yaourt/packages.conf` --needed
ln -sfP $(DOTFILES)/yaourt/.yaourtrc ~/.yaourtrc
pacman:
gpg --recv-keys F7E48EDB # Add custom key for ncurses
sudo ln -sfP $(DOTFILES)/yaourt/pacman.conf /etc/pacman.conf
sudo pacman-key -r 962DDE58
sudo pacman-key --lsign-key 962DDE58
gpg --keyserver pool.sks-keyservers.net --recv-keys 2E1AC68ED40814E0 # gotta be a way to add to pacman, not my GPG
hot-fix:
sudo ln -sfP /usr/bin/python2 /usr/bin/python # Set the default python version to be python 2
.PHONY: apt bash bin config gnome yaourt pacman hot-fix