mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
4bf8f375ef
This adds a codesign step to our makefile build which should automatically sign the application and resolve the issues on M1 macs where Alacritty constantly requests permissions. Since self-signing does still seem to fix this issue after sharing the resulting `Alacritty.app` with other M1 macs, the binary produced by our release build should also be fixed automatically. Fixes #5840.
79 lines
2.9 KiB
Makefile
79 lines
2.9 KiB
Makefile
TARGET = alacritty
|
|
|
|
ASSETS_DIR = extra
|
|
RELEASE_DIR = target/release
|
|
MANPAGE = $(ASSETS_DIR)/alacritty.man
|
|
MANPAGE-MSG = $(ASSETS_DIR)/alacritty-msg.man
|
|
TERMINFO = $(ASSETS_DIR)/alacritty.info
|
|
COMPLETIONS_DIR = $(ASSETS_DIR)/completions
|
|
COMPLETIONS = $(COMPLETIONS_DIR)/_alacritty \
|
|
$(COMPLETIONS_DIR)/alacritty.bash \
|
|
$(COMPLETIONS_DIR)/alacritty.fish
|
|
|
|
APP_NAME = Alacritty.app
|
|
APP_TEMPLATE = $(ASSETS_DIR)/osx/$(APP_NAME)
|
|
APP_DIR = $(RELEASE_DIR)/osx
|
|
APP_BINARY = $(RELEASE_DIR)/$(TARGET)
|
|
APP_BINARY_DIR = $(APP_DIR)/$(APP_NAME)/Contents/MacOS
|
|
APP_EXTRAS_DIR = $(APP_DIR)/$(APP_NAME)/Contents/Resources
|
|
APP_COMPLETIONS_DIR = $(APP_EXTRAS_DIR)/completions
|
|
|
|
DMG_NAME = Alacritty.dmg
|
|
DMG_DIR = $(RELEASE_DIR)/osx
|
|
|
|
vpath $(TARGET) $(RELEASE_DIR)
|
|
vpath $(APP_NAME) $(APP_DIR)
|
|
vpath $(DMG_NAME) $(APP_DIR)
|
|
|
|
all: help
|
|
|
|
help: ## Print this help message
|
|
@grep -E '^[a-zA-Z._-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
|
|
binary: $(TARGET)-native ## Build a release binary
|
|
binary-universal: $(TARGET)-universal ## Build a universal release binary
|
|
$(TARGET)-native:
|
|
MACOSX_DEPLOYMENT_TARGET="10.11" cargo build --release
|
|
$(TARGET)-universal:
|
|
MACOSX_DEPLOYMENT_TARGET="10.11" cargo build --release --target=x86_64-apple-darwin
|
|
MACOSX_DEPLOYMENT_TARGET="10.11" cargo build --release --target=aarch64-apple-darwin
|
|
@lipo target/{x86_64,aarch64}-apple-darwin/release/$(TARGET) -create -output $(APP_BINARY)
|
|
|
|
app: $(APP_NAME)-native ## Create an Alacritty.app
|
|
app-universal: $(APP_NAME)-universal ## Create a universal Alacritty.app
|
|
$(APP_NAME)-%: $(TARGET)-%
|
|
@mkdir -p $(APP_BINARY_DIR)
|
|
@mkdir -p $(APP_EXTRAS_DIR)
|
|
@mkdir -p $(APP_COMPLETIONS_DIR)
|
|
@gzip -c $(MANPAGE) > $(APP_EXTRAS_DIR)/alacritty.1.gz
|
|
@gzip -c $(MANPAGE-MSG) > $(APP_EXTRAS_DIR)/alacritty-msg.1.gz
|
|
@tic -xe alacritty,alacritty-direct -o $(APP_EXTRAS_DIR) $(TERMINFO)
|
|
@cp -fRp $(APP_TEMPLATE) $(APP_DIR)
|
|
@cp -fp $(APP_BINARY) $(APP_BINARY_DIR)
|
|
@cp -fp $(COMPLETIONS) $(APP_COMPLETIONS_DIR)
|
|
@touch -r "$(APP_BINARY)" "$(APP_DIR)/$(APP_NAME)"
|
|
@codesign --remove-signature "$(APP_DIR)/$(APP_NAME)"
|
|
@codesign --force --deep --sign - "$(APP_DIR)/$(APP_NAME)"
|
|
@echo "Created '$(APP_NAME)' in '$(APP_DIR)'"
|
|
|
|
dmg: $(DMG_NAME)-native ## Create an Alacritty.dmg
|
|
dmg-universal: $(DMG_NAME)-universal ## Create a universal Alacritty.dmg
|
|
$(DMG_NAME)-%: $(APP_NAME)-%
|
|
@echo "Packing disk image..."
|
|
@ln -sf /Applications $(DMG_DIR)/Applications
|
|
@hdiutil create $(DMG_DIR)/$(DMG_NAME) \
|
|
-volname "Alacritty" \
|
|
-fs HFS+ \
|
|
-srcfolder $(APP_DIR) \
|
|
-ov -format UDZO
|
|
@echo "Packed '$(APP_NAME)' in '$(APP_DIR)'"
|
|
|
|
install: $(INSTALL)-native ## Mount disk image
|
|
install-universal: $(INSTALL)-native ## Mount universal disk image
|
|
$(INSTALL)-%: $(DMG_NAME)-%
|
|
@open $(DMG_DIR)/$(DMG_NAME)
|
|
|
|
.PHONY: app binary clean dmg install $(TARGET) $(TARGET)-universal
|
|
|
|
clean: ## Remove all build artifacts
|
|
@cargo clean
|