forked from zookinheimer/Lunch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
239 lines (209 loc) · 7.77 KB
/
Makefile
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
.DEFAULT_GOAL := help
# TODO: test oneshell target (https://www.gnu.org/software/make/manual/html_node/One-Shell.html)
.ONESHELL:
export SHELL := $(shell which sh)
# .SHELLFLAGS := -eu -o pipefail -c
# MAKEFLAGS += --warn-undefined-variables
# ENV VARS
export UNAME := $(shell uname -s)
ifeq ($(UNAME), Darwin)
export XCODE := $(shell xcode-select --install >/dev/null 2>&1; echo $$?)
endif
ifeq ($(UNAME), Darwin)
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK := 1
endif
ifeq ($(shell command -v brew >/dev/null 2>&1; echo $$?), 0)
export BREW := $(shell which brew)
endif
ifeq ($(shell command -v python >/dev/null 2>&1; echo $$?), 0)
export PYTHON := $(shell which python3)
endif
ifeq ($(shell command -v pip >/dev/null 2>&1; echo $$?), 0)
export PIP := $(shell which pip3)
endif
ifeq ($(shell command -v asdf >/dev/null 2>&1; echo $$?), 0)
export ASDF := $(shell which asdf)
endif
ifeq ($(shell command -v ansible >/dev/null 2>&1; echo $$?), 0)
export ANSIBLE := $(shell which ansible)
endif
ifeq ($(shell command -v ansible-galaxy >/dev/null 2>&1; echo $$?), 0)
export ANSIBLE_GALAXY := $(shell which ansible-galaxy)
endif
ifeq ($(shell command -v ansible-lint >/dev/null 2>&1; echo $$?), 0)
export ANSIBLE_LINT := $(shell which ansible-lint)
endif
ifeq ($(shell command -v just >/dev/null 2>&1; echo $$?), 0)
export JUST := $(shell which just)
endif
ifeq ($(shell command -v wget >/dev/null 2>&1; echo $$?), 0)
export WGET := $(shell which wget)
endif
ifneq (,$(wildcard /etc/os-release))
include /etc/os-release
endif
# colors
GREEN := $(shell tput -Txterm setaf 2)
YELLOW := $(shell tput -Txterm setaf 3)
WHITE := $(shell tput -Txterm setaf 7)
CYAN := $(shell tput -Txterm setaf 6)
RESET := $(shell tput -Txterm sgr0)
# targets
.PHONY: all
all: ansible ansible-galaxy sanity-check git help homebrew just install mpr tldr update xcode
# * cf. `distrobox create --name i-use-arch-btw --image archlinux:latest && distrobox enter i-use-arch-btw`
# * || `distrobox create --name debby --image debian:stable && distrobox enter debby`
sanity-check: ## output environment variables
@echo "Checking environment..."
@echo "UNAME: ${UNAME}"
@echo "SHELL: ${SHELL}"
@echo "ID: ${ID}"
@echo "ID_LIKE: ${ID_LIKE}"
@echo "XCODE: ${XCODE}"
@echo "BREW: ${BREW}"
@echo "HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: ${HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK}"
@echo "PYTHON: ${PYTHON}"
@echo "PIP: ${PIP}"
xcode: ## install xcode command line tools
if [ "${UNAME}" = "Darwin" ] && [ "${XCODE}" -ne 1 ]; then \
echo "Installing Xcode command line tools..."; \
xcode-select --install; \
elif [ "${UNAME}" = "Darwin" ] && [ "${XCODE}" -eq 1 ]; then \
echo "xcode already installed."; \
else \
echo "xcode not available on macOS."; \
fi
homebrew: ## install homebrew
if [ "${UNAME}" = "Darwin" ] && [ -z "${BREW}" ]; then \
echo "Installing Homebrew..."; \
/bin/bash -c "$$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; \
elif [ "${UNAME}" = "Darwin" ] && [ ! -z "${BREW}" ]; then \
echo "Homebrew already installed."; \
else \
echo "brew not available on macOS."; \
fi
update: ## update package manager
@echo "Updating package manager..."
if [ "${UNAME}" = "Darwin" ] && [ "$(command -v brew >/dev/null 2>&1; echo $?)" -eq 0 ]; then \
brew update; \
elif [ "${ID}" = "ubuntu" ] || [ "${ID_LIKE}" = "debian" ]; then \
sudo apt update; \
elif [ "${ID}" = "fedora" ]; then \
sudo dnf update; \
elif [ "${ID}" = "arch" ]; then \
yes | sudo pacman -Syu; \
fi
git: ## install git
@echo "Installing Git..."
if [ "${UNAME}" = "Darwin" ] && [ "$(command -v brew >/dev/null 2>&1; echo $?)" -eq 0 ]; then \
brew install git; \
elif [ "${ID}" = "ubuntu" ] || [ "${ID_LIKE}" = "debian" ]; then \
sudo apt install -y git; \
elif [ "${ID}" = "fedora" ]; then \
sudo dnf install -y git; \
elif [ "${ID}" = "arch" ]; then \
yes | sudo pacman -S git; \
else \
echo "git already installed."; \
fi
python: ## install python
@echo "Installing Python..."
if [ "${UNAME}" = "Darwin" ] && [ -z "${PYTHON}" ]; then \
brew install python; \
elif [ "${ID}" = "ubuntu" ] || [ "${ID_LIKE}" = "debian" ]; then \
sudo apt install -y python3; \
elif [ "${ID}" = "fedora" ]; then \
sudo dnf install -y python3; \
elif [ "${ID}" = "arch" ]; then \
yes | sudo pacman -S python; \
else \
echo "python already installed."; \
fi
pip: python ## install pip
@echo "Installing Pip..."
if [ "${UNAME}" = "Darwin" ] && [ -z "${PYTHON})" ]; then \
brew install python; \
elif [ "${ID}" = "ubuntu" ] || [ "${ID_LIKE}" = "debian" ] && [ -z "${PIP}" ]; then \
sudo apt install -y python3-pip; \
elif [ "${ID}" = "fedora" ] && [ -z "${PIP}" ]; then \
sudo dnf install -y python3-pip; \
elif [ "${ID}" = "arch" ] && [ -z "${PIP}" ]; then \
yes | sudo pacman -S python-pip; \
else \
echo "pip already installed."; \
fi
ansible: pip ## install ansible
if [ -z ${ANSIBLE} ]; then \
echo "Installing Ansible..."; \
if [ "${UNAME}" = "Darwin" ]; then \
brew install ansible ansible-lint; \
else \
python3 -m pip install ansible ansible-lint; \
sudo touch /var/log/ansible.log; \
sudo chmod 666 /var/log/ansible.log; \
fi; \
else \
echo "ansible already installed."; \
fi
ansible-galaxy: ansible git ## install ansible galaxy roles
@echo "Installing Ansible Galaxy roles..."
if [ ! -f /tmp/requirements.yml ]; then \
curl https://raw.githubusercontent.com/pythoninthegrass/framework/master/requirements.yml -o /tmp/requirements.yml; \
fi; \
if [ "${UNAME}" = "Darwin" ]; then \
ansible-galaxy install -r /tmp/requirements.yml; \
elif [ "${UNAME}" = "Linux" ]; then \
if [ ! -z "${ASDF}" ]; then \
asdf reshim python; \
fi; \
"${ANSIBLE_GALAXY}" install -r /tmp/requirements.yml; \
fi
# TODO: QA @ kali
mpr: ## install the makedeb package repo (mpr) for prebuilt packages
@echo "Installing the makedeb package repo (mpr)..."
if [ "${ID}" = "ubuntu" ] || [ "${ID_LIKE}" = "debian" ]; then \
[ -z "${WGET}" ] || sudo apt install -y wget; \
wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null; \
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list; \
else \
echo "mpr not available on ${UNAME}."; \
fi
just: mpr update ## install justfile
if [ -z "${WGET}" ] && [ -z "${JUST}" ]; then \
echo "Installing Justfile..."; \
if [ "${UNAME}" = "Darwin" ]; then \
brew install just; \
elif [ "${ID}" = "ubuntu" ] || [ "${ID_LIKE}" = "debian" ]; then \
sudo apt install -y just; \
elif [ "${ID}" = "fedora" ]; then \
sudo dnf install -y just; \
elif [ "${ID}" = "arch" ]; then \
yes | sudo pacman -S just; \
fi; \
else \
echo "just already installed."; \
fi
tldr: ## install tldr
@echo "Installing Pip..."
if [ "${UNAME}" = "Darwin" ] && [ -z "${PYTHON})" ]; then \
brew install tldr; \
elif [ "${ID}" = "ubuntu" ] || [ "${ID_LIKE}" = "debian" ] && [ -z "${PIP}" ]; then \
sudo apt install -y tldr-py; \
elif [ "${ID}" = "fedora" ] && [ -z "${PIP}" ]; then \
sudo dnf install -y tldr; \
elif [ "${ID}" = "arch" ] && [ -z "${PIP}" ]; then \
yes | sudo pacman -S tldr; \
else \
echo "tldr already installed."; \
fi
install: sanity-check update xcode homebrew git python pip ansible ansible-galaxy mpr just tldr ## install all dependencies
help: ## show this help
@echo ''
@echo 'Usage:'
@echo ' ${YELLOW}make${RESET} ${GREEN}<target>${RESET}'
@echo ''
@echo 'Targets:'
@awk 'BEGIN {FS = ":.*?## "} { \
if (/^[a-zA-Z_-]+:.*?##.*$$/) {printf " ${YELLOW}%-20s${GREEN}%s${RESET}\n", $$1, $$2} \
else if (/^## .*$$/) {printf " ${CYAN}%s${RESET}\n", substr($$1,4)} \
}' $(MAKEFILE_LIST)