mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
24 lines
581 B
Makefile
24 lines
581 B
Makefile
bootstrap-homebrew:
|
|
xcode-select --install | true
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
|
|
bootsrap-brews:
|
|
@brew bundle \
|
|
--no-lock \
|
|
--cleanup \
|
|
--debug \
|
|
--file "$(PWD)/macOS/.config/macOS/Brewfile"
|
|
|
|
bootstrap-app-store:
|
|
@brew bundle \
|
|
--no-lock \
|
|
--cleanup \
|
|
--debug \
|
|
--file "$(PWD)/macOS/.config/macOS/AppStore.Brewfile"
|
|
|
|
stow:
|
|
@stow --stow --verbose --target ~ */
|
|
|
|
# Order matters, need to install home-brew first then formula
|
|
bootstrap: bootstrap-homebrew bootstrap-brews stow bootstrap-app-store
|