21 lines
660 B
Plaintext
21 lines
660 B
Plaintext
|
# 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
|
||
|
}
|