blob: 24e65d653401ac39563b4e6946f58b3ac0ce9274 (
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
47
48
49
50
|
# Maintainer: Kira Sokolova <Kyra256@proton.me>
pkgname=cooklang-chef
pkgver=0.10.3
pkgrel=1
pkgdesc="A CLI to manage cooklang recipes"
arch=("x86_64")
url="https://github.com/Zheoni/cooklang-chef"
license=('MIT')
makedepends=(cargo)
source=("$pkgname-$pkgver.tar.gz::https://github.com/Zheoni/$pkgname/archive/refs/tags/v$pkgver.tar.gz" "LICENSE::$url/raw/v$pkgver/LICENSE")
sha256sums=('8e886a825c64a490a4eed82e5101520ad7ef7ffc368039332c715d9f563e299d'
'e46fe296aa7c51286e420c91ee23780034495f2e9033ed40e2eb3ee4118610be')
prepare() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --frozen --release --all-features
target/release/chef generate-completions bash >chef.bash
target/release/chef generate-completions fish >chef.fish
target/release/chef generate-completions zsh >chef.zsh
}
check() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo test --frozen --all-features
}
package() {
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
cd "$pkgname-$pkgver"
find target/release \
-maxdepth 1 \
-executable \
-type f \
-exec install -Dm0755 -t "$pkgdir/usr/bin/" {} +
install -Dm644 chef.bash "$pkgdir/usr/share/bash-completion/completions/chef"
install -Dm644 chef.fish "$pkgdir/usr/share/fish/vendor_completions.d/chef.fish"
install -Dm644 chef.zsh "$pkgdir/usr/share/zsh/site-functions/_chef"
}
|