blob: 2c67c2424a3f6dd43e8705b96ca4d4504afbbab9 (
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
45
46
|
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Credit: desbma
pkgname=zoxide-git
pkgver=0.8.1.r9.gc7400cf
pkgrel=1
pkgdesc='A fast cd command that learns your habits'
arch=('x86_64' 'armv7h' 'aarch64')
url="https://github.com/ajeetdsouza/zoxide"
license=('MIT')
depends=('gcc-libs')
makedepends=('cargo' 'git')
provides=("${pkgname%-git}=${pkgver%.r*}")
conflicts=("${pkgname%-git}")
source=("$pkgname::git+$url")
sha512sums=('SKIP')
pkgver() {
git -C "$pkgname" describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "$pkgname"
cargo update
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
build() {
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cd "$pkgname"
cargo build --release --frozen --all-features
./target/release/zoxide init bash > zoxide.bash
./target/release/zoxide init zsh > _zoxide
./target/release/zoxide init fish > zoxide.fish
}
package() {
cd "$pkgname"
install -D -t "$pkgdir/usr/bin" target/release/zoxide
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dm644 man/man1/*.1 -t "$pkgdir/usr/share/man/man1/"
install -Dm644 zoxide.bash "$pkgdir/usr/share/bash-completion/completions/zoxide"
install -Dm644 _zoxide -t "$pkgdir/usr/share/zsh/site-completions/"
install -Dm644 zoxide.fish -t "$pkgdir/usr/share/fish/vendor_completions.d/"
}
|