-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffff098
commit b6ca8ee
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Template file for 'zellij' | ||
pkgname=zellij | ||
version=0.25.0 | ||
revision=1 | ||
# Dependency crate `wasmer-vm` only supports the following archs: x86_64, arm64, x86 | ||
# https://docs.wasmer.io/ecosystem/wasmer/wasmer-features#compiler-support-by-chipset | ||
archs="x86_64* aarch64* i686" | ||
build_style=cargo | ||
build_helper=qemu | ||
checkdepends="openssl-devel pkg-config" | ||
short_desc="Terminal workspace with batteries included" | ||
maintainer="Marcin Puc <marcin.e.puc@gmail.com>" | ||
license="MIT" | ||
homepage="https://zellij.dev" | ||
changelog="https://github.com/zellij-org/zellij/blob/main/CHANGELOG.md" | ||
distfiles="https://github.com/zellij-org/zellij/archive/v${version}.tar.gz" | ||
checksum=5bd4e6a726cf32e096f9c90d7dc414e63dee0613a56f5b665f4bfc6376dcf20a | ||
|
||
post_build() { | ||
ZELLIJ="target/${RUST_TARGET}/release/zellij" | ||
vtargetrun ${ZELLIJ} setup --generate-completion bash > zellij.bash | ||
vtargetrun ${ZELLIJ} setup --generate-completion zsh > zellij.zsh | ||
vtargetrun ${ZELLIJ} setup --generate-completion fish > zellij.fish | ||
} | ||
|
||
post_install() { | ||
vcompletion zellij.bash bash | ||
vcompletion zellij.zsh zsh | ||
vcompletion zellij.fish fish | ||
|
||
vlicense LICENSE.md | ||
vdoc README.md | ||
} |