blob: 8f87da6065a114f41a6f8e789afac50fe8a21475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Vasia Novikov <n1dr+cmarchlinux@yaaandex.com> (replace "aaa" with "a")
pkgname=rua
pkgver=0.14.15
pkgrel=1
pkgdesc='AUR helper in Rust providing control, review and jailed/offline build options'
url='https://github.com/vn971/rua'
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vn971/rua/archive/${pkgver}.tar.gz")
arch=('x86_64' 'i686')
license=('GPL3')
makedepends=('cargo')
depends=('bubblewrap' 'git' 'pacman' 'xz')
optdepends=(
'bubblewrap-suid: version of bubblewrap that works on linux-hardened kernel'
'shellcheck: check PKGBUILD scripts, taking care of special variables'
'sudo: package installation can be done via sudo, if convenient'
)
#options+=(!strip) # uncomment if you want readable stack traces
sha256sums=(4e22189f3769a58e4e178e368da8261b7e3315d0cd62ff66bbfca85a50fb47d3)
build () {
cd "$srcdir/$pkgname-$pkgver"
mkdir -p target/completions
if pacman -T pacman-git > /dev/null; then
_features="git"
fi
RUSTUP_TOOLCHAIN=stable \
COMPLETIONS_DIR=target/completions \
cargo build --features "${_features:-}" --release
}
package() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 target/release/rua "${pkgdir}/usr/bin/rua"
install -Dm644 target/completions/rua.bash "${pkgdir}/usr/share/bash-completion/completions/rua.bash"
install -Dm644 target/completions/rua.fish "${pkgdir}/usr/share/fish/completions/rua.fish"
install -Dm644 target/completions/_rua "${pkgdir}/usr/share/zsh/functions/Completion/Linux/_rua"
}
|