1 MAKEFLAGS
:= --no-builtin-rules
4 DEPS
:= $(wildcard deps
/*)
6 ifeq ($(shell uname
),Darwin
)
9 DIFF
:= $(shell gls
-t1
/usr
/local
/Cellar
/diffutils
/*/bin
/diff | head
-1)
28 pkgs_brew_cask_install \
41 @echo
'================================================================================'
42 @echo
'| Default target disabled. Specify a concrete one.'
43 @echo
'================================================================================'
46 home
: compiled | mpdconf_dirs
53 mkdir
-p ~
/var
/lib
/mpd
/playlists
54 mkdir
-p ~
/var
/log
/mpd
55 mkdir
-p ~
/var
/run
/mpd
70 sudo xbps-install
$(shell .
/list pkgs-void.list
)
73 xbps-query
-m | awk
-F
- '{sub("-" $$NF "$$", ""); print}' |
sort -u | grep
-vf
<(.
/list
-v sep
='\n' -v end
='\n' pkgs-void-src.list
) > pkgs-void.list
74 (echo
'#'; .
/patch-comments pkgs-void.list.comments pkgs-void.list
) | sponge pkgs-void.list
79 pkgs_golang
: list pkgs-golang.list
80 go
get -u
$(shell .
/list pkgs-golang.list
)
85 pkgs_ubuntu
: list pkgs-ubuntu.list
86 sudo apt
install $(shell .
/list pkgs-ubuntu.list
)
88 pkgs_ubuntu_debfiles
: list pkgs-ubuntu-debfiles.list
89 .
/install-debfiles pkgs-ubuntu-debfiles.list
95 pip
install --user
$(shell .
/list pkgs-pip.list
)
98 pip
install --user
--upgrade
$(shell .
/list pkgs-pip.list
)
104 pkgs_cargo
: list pkgs-cargo.list
105 cargo
install $(shell .
/list pkgs-cargo.list
)
112 $(MAKE
) pkgs_brew_install
113 $(MAKE
) pkgs_brew_cask_install
115 # TODO: Test pkgs_brew_tap when list contains multiple items
116 pkgs_brew_tap
: list pkgs-brew-tap.list
117 brew tap
$(shell .
/list pkgs-brew-tap.list
)
119 pkgs_brew_install
: list pkgs-brew-install.list
120 brew
install $(shell .
/list pkgs-brew-install.list
)
122 pkgs_brew_cask_install
: list pkgs-brew-cask-install.list
123 brew cask
install $(shell .
/list pkgs-brew-cask-install.list
)
128 pkgs_deb_install
: list pkgs-deb-install.list
129 sudo apt
install $(shell .
/list pkgs-deb-install.list
)
131 pkgs_deb_purge
: list pkgs-deb-purge.list
132 sudo apt purge
$(shell .
/list pkgs-deb-purge.list
)
137 pkgs_snap_classic
: list pkgs-snap-classic.list
138 @
$(MAKE
) $(foreach p
,$(shell .
/list pkgs-snap-classic.list
),pkg_snap_classic_
$(p
))
140 pkgs_snap_strict
: list pkgs-snap-strict.list
141 @
$(MAKE
) $(foreach p
,$(shell .
/list pkgs-snap-strict.list
),pkg_snap_strict_
$(p
))
143 # 'snap' command comes from 'snapd' deb pkg
145 sudo snap
install --classic
$*
156 $(foreach d
,$(DEPS
),$(eval
$(call GEN_DEP_RULE
,$(d
))))
159 find home
-type f
-print0 \
160 |
$(SED
) -z
's/^home\///g' \
162 | xargs
-0 -I
% sh
-c
'echo %; $(DIFF) --color=auto ~/% home/%'
165 find home
-type f
-print0 \
166 |
$(SED
) -z
's/^home\///g' \
167 | xargs
-0 -I
% sh
-c
'$(DIFF) -q ~/% home/% > /dev/null || cp ~/% home/%'
170 # TODO Backup files before replacing.
171 # But - recursive copy is not a good strategy for this.
172 # Need to do a file by file pass, like the diff recipe.
174 # Limit depth because directories are copied recursively:
175 find home
-maxdepth
1 -print0 \
176 |
$(GREP
) -zv
'^home$$' \
177 | xargs
-0 -I
% cp
-Rp
% ~