contrib/gpg-tui/Pkgfile

31 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-06-27 15:50:03 +02:00
# Description: Manage your GnuPG keys with ease!
# URL: https://github.com/orhun/gpg-tui
# Maintainer: Tim Biermann, tbier at posteo dot de
2021-06-28 11:01:06 +02:00
# Depends on: gpgme libxkbcommon rust
2021-06-27 15:50:03 +02:00
name=gpg-tui
2022-08-20 15:41:22 +02:00
version=0.9.1
2021-06-27 15:50:03 +02:00
release=1
source=(https://github.com/orhun/gpg-tui/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"
2022-08-20 15:41:22 +02:00
cargo build --release --manifest-path $name-$version/Cargo.toml
mkdir $SRC/completions
2022-08-20 15:41:22 +02:00
OUT_DIR=$SRC/completions/ cargo run --bin gpg-tui-completions \
--manifest-path $name-$version/Cargo.toml
2021-06-27 15:50:03 +02:00
install -Dt $PKG/usr/bin $name-$version/target/release/$name
2022-08-20 15:41:22 +02:00
prt-get isinst bash-completion && install -Dm 644 \
$SRC/completions/$name.bash \
-t $PKG/usr/share/bash-completion/completions/$name
prt-get isinst zsh && install -Dm 644 completions/_$name \
-t $PKG/usr/share/zsh/site-functions
install -Dm 644 $name-$version/man/$name.1 -t $PKG/usr/share/man/man1
2021-06-27 15:50:03 +02:00
}