33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'zellij'
|
|
pkgname=zellij
|
|
version=0.34.4
|
|
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
|
|
hostmakedepends="mandown"
|
|
checkdepends="libssh2-devel pkg-config"
|
|
short_desc="Terminal workspace with batteries included"
|
|
maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
|
|
license="MIT"
|
|
homepage="https://zellij.dev"
|
|
changelog="https://raw.githubusercontent.com/zellij-org/zellij/main/CHANGELOG.md"
|
|
distfiles="https://github.com/zellij-org/zellij/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=687e30a3e6916cdd7189ab04ff4b170bc5e09edd937637f0388b3f8432d0fc49
|
|
make_check_pre="env LIBSSH2_SYS_USE_PKG_CONFIG=1"
|
|
|
|
post_install() {
|
|
vdoc README.md
|
|
vlicense LICENSE.md
|
|
|
|
for shell in bash fish zsh; do
|
|
vtargetrun "${DESTDIR}/usr/bin/zellij" setup --generate-completion ${shell} > zellij.${shell}
|
|
vcompletion zellij.${shell} ${shell}
|
|
done
|
|
|
|
mandown docs/MANPAGE.md > zellij.1
|
|
vman zellij.1
|
|
}
|