32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
# Description: Manage your GnuPG keys with ease!
|
|
# URL: https://github.com/orhun/gpg-tui
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: gpgme libxkbcommon rust
|
|
|
|
name=gpg-tui
|
|
version=0.10.0
|
|
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"
|
|
|
|
cargo build --release --manifest-path $name-$version/Cargo.toml
|
|
|
|
mkdir $SRC/completions
|
|
OUT_DIR=$SRC/completions/ cargo run --release --bin gpg-tui-completions \
|
|
--manifest-path $name-$version/Cargo.toml
|
|
|
|
install -Dt $PKG/usr/bin $name-$version/target/release/$name
|
|
|
|
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
|
|
}
|