blob: 7424528ffd1571857f6889560ee974973ae991d5 (
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
51
52
53
54
55
|
# Maintainer: ZilloweZ <zillowez@gmail.com>
pkgname='zoi'
_tag="Prod-Release-$pkgver"
pkgver=1.18.3
pkgrel=1
pkgdesc="Advanced Package Manager & Environment Orchestrator"
arch=('x86_64' 'aarch64')
url="https://gitlab.com/zillowe/zillwen/zusty/zoi"
license=('Apache-2.0')
provides=("${pkgname%-bin}")
conflicts=("${pkgname%-bin}")
makedepends=('cargo' 'make')
depends=('git')
optdepends=(
'bash-completion: for bash shell completion'
'zsh: for zsh shell completion'
'fish: for fish shell completion'
'less: for viewing files'
)
source=("$url/-/archive/$_tag/Zoi-Prod-Release-$pkgver.tar.gz"
"LICENSE::$url/-/raw/main/LICENSE")
sha512sums=('6146a35f3b5c2023acbb257f6182abd2a9dea68223430725d3a1ef9a7b95dbb319012c0747d6e315156884a408c9a209eb65241e6bfb9d4f4ff64d7da73059fd'
'e2cca3fc757382874694b00e85372aa114ef6f6196d767ba445b4499f170ef6589e3aab60d41615bdc1a74596a1f0f6b148a934b19b69e639de1fddf6dd2b2ea')
build() {
cd "$srcdir/$_pkgname_cap-$_tag"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$_pkgname_cap-$_tag"
make DESTDIR="$pkgdir" install
install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
local _bash_completion_dir="$pkgdir/usr/share/bash-completion/completions"
install -d "$_bash_completion_dir"
"$pkgdir/usr/bin/$pkgname" generate-completions bash >"$_bash_completion_dir/$pkgname"
local _zsh_completion_dir="$pkgdir/usr/share/zsh/site-functions"
install -d "$_zsh_completion_dir"
"$pkgdir/usr/bin/$pkgname" generate-completions zsh >"$_zsh_completion_dir/_$pkgname"
local _fish_completion_dir="$pkgdir/usr/share/fish/vendor_completions.d"
install -d "$_fish_completion_dir"
"$pkgdir/usr/bin/$pkgname" generate-completions fish >"$_fish_completion_dir/$pkgname.fish"
local _man_dir="$pkgdir/usr/share/man/man1"
install -d "$_man_dir"
"$pkgdir/usr/bin/$pkgname" generate-manual
install -Dm644 manuals/*.1 "$_man_dir"
}
|