zellij: -> 0.13.0

This commit is contained in:
Tim Biermann 2021-06-24 18:53:29 +00:00
parent eae2445869
commit 1083666468
3 changed files with 28 additions and 0 deletions

3
zellij/.footprint Normal file
View File

@ -0,0 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/zellij

5
zellij/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32YcNR0HPrEla2g4FvNRtf0lmPMoNAV0G7KWQkB6A6b2H23HtA+WAOTnAr9eaoyHxz1hM0fKeMlo7S73hbJFvAU=
SHA256 (Pkgfile) = 316668a22125ae1f3b1011ed0e9e4be6770bc836de8639fc5da34f8cb4329d0e
SHA256 (.footprint) = 537a7725ad8d6bec80c3a23dcfe06ad71a7a7f2ff4a32e05142522fc42a355c0
SHA256 (zellij-0.13.0.tar.gz) = 5439561d8d7fb51d0f9bd1f3d5a0caa79ffc7dffd1c910adc7c56841df2cfb6a

20
zellij/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: A terminal workspace with batteries included
# URL: https://github.com/zellij-org/zellij
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: rust
name=zellij
version=0.13.0
release=1
source=(https://github.com/zellij-org/zellij/archive/v$version/$name-$version.tar.gz)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
cargo update --manifest-path $name-$version/Cargo.toml
cargo build --release --locked --manifest-path $name-$version/Cargo.toml
install -Dt $PKG/usr/bin $name-$version/target/release/$name
}