-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_once_before_install-packages-darwin.sh.tmpl
124 lines (116 loc) · 1.91 KB
/
run_once_before_install-packages-darwin.sh.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{{- if eq .chezmoi.os "darwin" -}}
#!/usr/bin/env bash
if [ ! -d "${HOME}/.nrel-certs" ]; then
git clone https://github.nrel.gov/TADA/nrel-certs.git ${HOME}/.nrel-certs
source ${HOME}/.nrel-certs/setup
fi
brew bundle --no-lock --file=/dev/stdin <<EOF
tap "homebrew/bundle"
brew "gcc"
brew "fzf"
brew "pyenv"
{{- if not .test_machine }}
brew "act"
brew "age"
brew "aspell"
brew "autoconf"
brew "automake"
brew "bash"
brew "bat"
brew "pkg-config"
brew "ccache"
brew "cloc"
brew "readline"
brew "llvm"
brew "ccls"
brew "chezmoi"
brew "clang-format"
brew "cmake"
brew "colordiff"
brew "coreutils"
brew "cppcheck"
brew "dos2unix"
brew "doxygen"
brew "enchant"
brew "epstool"
brew "exiftool"
brew "faac"
brew "fd"
brew "fdk-aac"
brew "findutils"
brew "flac123"
brew "gawk"
brew "git"
brew "ghostscript"
brew "global"
brew "gnuplot"
brew "graphviz"
brew "htop"
brew "hunspell"
brew "imagemagick"
brew "ispell"
brew "markdown"
brew "modules"
brew "mp3info"
brew "mpich"
brew "mpv"
brew "nnn"
brew "node"
brew "npm"
brew "ocrmypdf"
brew "openssl@3"
brew "pandoc"
brew "pianobar"
brew "prettyping"
brew "[email protected]"
brew "ripgrep"
brew "shellcheck"
brew "shfmt"
brew "stow"
brew "sqlite3"
brew "taglib"
brew "terminal-notifier"
brew "tldr"
brew "tmux"
brew "tree"
brew "tree-sitter"
brew "vorbis-tools"
brew "wdiff"
brew "wget"
brew "xpdf"
brew "xz"
brew "yt-dlp"
brew "zlib"
tap "jimeh/emacs-builds"
tap "homebrew/cask-fonts"
cask_args appdir: "~/Applications"
cask "font-fira-code-nerd-font"
cask "font-meslo-lg-nerd-font"
cask "adobe-acrobat-reader"
cask "diffusionbee"
cask "emacs-app"
cask "firefox"
cask "gimp"
cask "hammerspoon"
cask "inkscape"
cask "iterm2"
cask "keepassxc"
cask "macfuse"
cask "mactex"
cask "miniforge"
cask "musicbrainz-picard"
cask "paraview"
cask "slack"
cask "visit"
cask "vivaldi"
cask "vlc"
cask "xquartz"
cask "zoom"
cask "zotero"
{{ end }}
EOF
brew pin gcc
{{- if not .test_machine }}
brew pin mpich
{{ end }}
{{ end -}}