aboutsummaryrefslogblamecommitdiffstats
path: root/base/Makefile
blob: dd780a6c637d9a9aa9490719b35aba659fcc23af (plain) (tree)
1
2
       
                    














                                                               
                                      
                                    











                                                                                              




                                             


                                        

                         
.POSIX:
include ../common.mk

FACE = penguin.png

install:
	mkdir -p -- ~/.config
	test ! -d ~/.profile
	test ! -d ~/.config/profile
	test ! -d ~/.config/user-dirs.locale
	test ! -d ~/.config/face
	test ! -d ~/.face
	test ! -d ~/.face.icon
	ln -sf -- .config/profile ~/.profile
	ln -sf -- ~/.dotfiles/base/profile ~/.config/profile
	ln -sf -- ~/.dotfiles/base/user-dirs.locale ~/.config/
	ln -sf -- ~/.dotfiles/base/faces/$(FACE) ~/.config/face
	ln -sf -- .config/face ~/.face
	ln -sf -- .face ~/.face.icon
	if test -L ~/.config/locations; then \
		test "$$(readlink -- ~/.config/locations)" = ~/.dotfiles/.secrets/locations; \
	else \
		test ! -e ~/.config/locations && \
		ln -s -- ~/.dotfiles/.secrets/locations ~/.config/locations; \
	fi
	test ! -d ~/.config/geolocation
	test ! -d ~/.config/metar
	test -L ~/.config/locations/current || test ! -e ~/.config/locations/current
	test -L ~/.config/locations/current || ln -sf default ~/.config/locations/current
	ln -sf locations/current/geolocation ~/.config/geolocation
	ln -sf locations/current/metar ~/.config/metar

uninstall:
	-unlink -- ~/.config/profile
	-unlink -- ~/.config/user-dirs.locale
	-unlink -- ~/.profile
	-unlink -- ~/.config/locations
	-unlink -- ~/.config/geolocation
	-unlink -- ~/.config/metar

.PHONY: install uninstall