mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Fix Makefile manpage generation
Signed-off-by: Dennis Maier <d.maier94@web.de> Co-authored-by: Christian Duerr <contact@christianduerr.com>
This commit is contained in:
parent
e3746e49a1
commit
d94cb6be99
2 changed files with 6 additions and 4 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -14,6 +14,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install dependencies
|
||||
run: brew install scdoc
|
||||
- name: Install ARM target
|
||||
run: rustup update && rustup target add aarch64-apple-darwin
|
||||
- name: Test
|
||||
|
|
8
Makefile
8
Makefile
|
@ -2,8 +2,8 @@ TARGET = alacritty
|
|||
|
||||
ASSETS_DIR = extra
|
||||
RELEASE_DIR = target/release
|
||||
MANPAGE = $(ASSETS_DIR)/alacritty.man
|
||||
MANPAGE-MSG = $(ASSETS_DIR)/alacritty-msg.man
|
||||
MANPAGE = $(ASSETS_DIR)/man/alacritty.1.scd
|
||||
MANPAGE-MSG = $(ASSETS_DIR)/man/alacritty-msg.1.scd
|
||||
CONFIGFILE = alacritty.yml
|
||||
TERMINFO = $(ASSETS_DIR)/alacritty.info
|
||||
COMPLETIONS_DIR = $(ASSETS_DIR)/completions
|
||||
|
@ -46,8 +46,8 @@ $(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
|
||||
@scdoc < $(MANPAGE) | gzip -c > $(APP_EXTRAS_DIR)/alacritty.1.gz
|
||||
@scdoc < $(MANPAGE-MSG) | gzip -c > $(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)
|
||||
|
|
Loading…
Reference in a new issue