void-packages/srcpkgs/zellij/template

34 lines
1.1 KiB
Bash
Raw Normal View History

2022-02-19 00:51:47 +01:00
# Template file for 'zellij'
pkgname=zellij
2022-03-16 14:30:12 +01:00
version=0.27.0
2022-02-19 00:51:47 +01:00
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"
2022-03-16 14:30:12 +01:00
maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
2022-02-19 00:51:47 +01:00
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"
2022-03-16 14:30:12 +01:00
checksum=6159482c25d3cb55b04d23230812f4450e88ff0975161594297a7deef8979a38
2022-02-19 00:51:47 +01:00
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
}