-
Notifications
You must be signed in to change notification settings - Fork 123
/
Makefile
43 lines (32 loc) · 1.17 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
EXECUTABLE_NAME = mint
REPO = https://github.com/yonaskolb/Mint
VERSION = 0.17.5
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
SWIFT_BUILD_FLAGS = --disable-sandbox -c release --arch arm64 --arch x86_64
EXECUTABLE_PATH = $(shell swift build $(SWIFT_BUILD_FLAGS) --show-bin-path)/$(EXECUTABLE_NAME)
CURRENT_PATH = $(PWD)
RELEASE_TAR = $(REPO)/archive/$(VERSION).tar.gz
.PHONY: install build uninstall format_code publish release
install: build
mkdir -p $(PREFIX)/bin
cp -f $(EXECUTABLE_PATH) $(INSTALL_PATH)
build:
swift build $(SWIFT_BUILD_FLAGS)
uninstall:
rm -f $(INSTALL_PATH)
format_code:
swiftformat Tests --stripunusedargs closure-only --header strip --disable blankLinesAtStartOfScope
swiftformat Sources --stripunusedargs closure-only --header strip --disable blankLinesAtStartOfScope
publish: zip_binary bump_brew
echo "published $(VERSION)"
bump_brew:
brew update
brew bump-formula-pr --url=$(RELEASE_TAR) Mint
zip_binary: build
zip -jr $(EXECUTABLE_NAME).zip $(EXECUTABLE_PATH)
release:
sed -i '' 's|\(let version = "\)\(.*\)\("\)|\1$(VERSION)\3|' Sources/MintCLI/MintCLI.swift
git add .
git commit -m "Update to $(VERSION)"
git tag $(VERSION)