dot-files/Makefile

218 lines
4.1 KiB
Makefile
Raw Normal View History

CLI_PACKAGES := \
bash \
flake8 \
2019-12-04 11:55:10 +01:00
gdb \
git \
haskell \
isort \
2020-08-22 20:04:16 +02:00
mimetype \
2019-12-08 22:21:13 +01:00
mypy \
nvim \
scripts \
shell \
2020-05-01 16:47:38 +02:00
ssh \
tmux \
vifm \
vim \
zsh \
VISUAL_PACKAGES := \
X \
desktop \
dunst \
fontconfig \
i3 \
i3blocks \
redshift \
rofi \
2020-06-24 11:33:05 +02:00
system-X \
termite \
tridactyl \
wallpapers \
2019-11-05 11:43:12 +01:00
zathura \
CLI_DEPENDENCIES := \
aur/bitwarden-cli \
aur/cppreference \
aur/git-absorb \
aur/handlr-bin \
2020-08-27 17:48:14 +02:00
aur/nodejs-markdownlint-cli \
aur/stdman \
aur/xdg-utils-handlr \
aur/zsh-fast-syntax-highlighting-git \
community/bat \
community/fd \
community/fzf \
community/git-lfs \
2020-07-14 21:35:24 +02:00
community/global \
community/lesspipe \
community/mosh \
2019-12-08 22:21:13 +01:00
community/mypy \
community/pandoc \
community/python-pynvim \
community/ripgrep \
2020-08-31 18:43:21 +02:00
community/rust-analyzer \
2020-08-22 18:32:40 +02:00
community/rustup \
community/shellcheck \
community/shfmt \
community/stack \
community/stow \
community/tig \
community/tmux \
community/udiskie \
community/vifm \
community/zsh-completions \
core/archlinux-keyring \
core/openssh \
extra/bash-completion \
extra/ctags \
extra/git \
extra/imagemagick \
extra/keychain \
extra/networkmanager \
2020-08-22 21:19:26 +02:00
extra/vim \
extra/vim-runtime \
extra/zsh \
VISUAL_DEPENDENCIES := \
aur/bitwarden-rofi \
aur/gnome-ssh-askpass3 \
aur/i3-battery-popup-git \
aur/i3blocks-contrib-git \
2020-10-19 22:02:02 +02:00
aur/i3lock-color \
aur/networkmanager-dmenu-git \
2020-05-25 18:43:25 +02:00
aur/qsyncthingtray \
aur/rofi-dmenu \
2020-05-29 17:35:48 +02:00
aur/rofi-emoji \
community/acpi \
community/dunst \
2020-06-16 11:27:04 +02:00
community/flameshot \
community/playerctl \
community/redshift \
2020-05-25 18:43:25 +02:00
community/syncthing \
community/sysstat \
community/termite \
community/xautolock \
community/xsel \
community/zathura \
community/zathura-cb \
community/zathura-djvu \
community/zathura-pdf-poppler \
community/zathura-ps \
extra/firefox \
extra/nm-connection-editor \
extra/noto-fonts-emoji \
extra/thunderbird \
extra/vlc \
HASKELL_DEPENDENCIES := \
brittany \
hlint \
STOW_TARGET := $(HOME)
STOW = stow -t $(STOW_TARGET) -R -v
YAY := yay -S --noconfirm --needed
# Used to disable some steps in CI
CI :=
.PHONY: all
all: install
# Install packages and their dependencies
.PHONY: install-cli
install-cli: install-cli-deps
install-cli: link-cli
install-cli: rust-pkgs haskell-pkgs
.PHONY: install
install: install-cli
install: install-visual-deps
install: link-visual
.PHONY: install-cli-deps
install-cli-deps:
$(YAY) $(CLI_DEPENDENCIES)
.PHONY: install-visual-deps
install-visual-deps:
$(YAY) $(VISUAL_DEPENDENCIES)
# Linking packages
2019-12-17 18:22:43 +01:00
.PHONY: link-all
link-all: link-cli link-visual
.PHONY: link-cli
link-cli: $(addprefix stow-,$(CLI_PACKAGES))
.PHONY: link-visual
link-visual: $(addprefix stow-,$(VISUAL_PACKAGES))
# Installing configuration packages
stow-%: %
$(STOW) $<
stow-scripts: STOW_TARGET=~/.scripts
stow-scripts: scripts
mkdir -p $(STOW_TARGET)
$(STOW) $<
stow-ssh: ssh
$(STOW) $<
# Enable & start ssh-agent service
[ -z "$(CI)" ] || systemctl enable --now --user ssh-agent.service
2020-06-24 11:33:05 +02:00
stow-system-X: STOW_TARGET=/
stow-system-X: system-X
sudo $(STOW) $<
stow-tmux: tmux
$(STOW) $<
[ -d ~/.config/tmux/plugins/tpm ] || \
git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm;
~/.config/tmux/plugins/tpm/bin/install_plugins
stow-vim: vim
$(STOW) $<
vim +PlugInstall +qa
# Removing packages
.PHONY: unlink-all
unlink-all: unlink-cli unlink-visual
.PHONY: unlink-cli
unlink-cli: $(addprefix unstow-,$(CLI_PACKAGES))
.PHONY: unlink-visual
unlink-visual: $(addprefix unstow-,$(VISUAL_PACKAGES))
.PHONY: $(addprefix unstow-,$(CLI_PACKAGES))
.PHONY: $(addprefix unstow-,$(VISUAL_PACKAGES))
unstow-%:
$(STOW) -D $*
unstow-scripts: STOW_TARGET=~/.scripts
unstow-scripts:
$(STOW) -D scripts
2020-06-24 11:33:05 +02:00
unstow-system-X: STOW_TARGET=/
unstow-system-X:
sudo $(STOW) -D system-X
unstow-tmux:
$(STOW) -D tmux
rm -rf ~/.config/tmux/plugins/
2020-08-22 18:32:40 +02:00
# The `rustup` package does not install a toolchain by default
.PHONY: rust-pkgs
rust-pkgs:
2020-08-22 18:32:40 +02:00
rustup default stable
2020-08-31 20:10:49 +02:00
rustup component add rust-src # For rust-analyzer
.PHONY: haskell-pkgs
haskell-pkgs:
if [ -n "$(HASKELL_DEPENDENCIES)" ]; then \
stack build --copy-compiler-tool $(HASKELL_DEPENDENCIES); \
fi