skel support

This commit is contained in:
James Tomasino 2018-12-31 12:54:26 -05:00
parent dcac3b6c47
commit 6b7775b2fd
1 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
install: bin templates man completion files
install: bin templates man completion files skel
bin:
stow -t "/usr/local/bin" bin
@ -19,11 +19,15 @@ files:
mkdir -p "/usr/share/games/fortunes"
cd files && stow -t "/usr/share/games/fortunes" fortunes
skel:
rsync -avzh skel/ /etc/skel/
uninstall:
stow -t "/usr/local/bin" -D bin
stow -t "/etc/templates" -D templates
stow -t "/usr/share/man/man1/" -D man
stow -t "/etc/bash_completion.d" -D completion
#stow -t "/etc/skel" -D skel
cd files && stow -t "/usr/share/games/fortunes" -D fortunes
.PHONY: bin templates man completion files
.PHONY: bin templates man completion files skel