blob: 5d17dbdf7954b94319ef6d2ac92f542e791fb876 (
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
56
57
58
59
60
61
62
63
64
65
66
67
|
# Maintainer: aulonsal <aulonsal at gmail dot com>
pkgname=outfieldr-git
_pkgname="${pkgname%-git}"
pkgver=1.0.2.r5.g0224b91
pkgrel=2
pkgdesc='TLDR client in zig'
arch=('x86_64')
url='https://gitlab.com/ve-nt/outfieldr'
license=('MIT')
makedepends=('git' 'zig')
provides=("$_pkgname" 'tldr')
conflicts=("$_pkgname" 'tldr')
source=(
"git+$url.git"
'git+https://github.com/truemedian/zfetch.git'
'git+https://github.com/Hejsil/zig-clap.git'
'zig-tar::git+https://github.com/mattnite/tar.git'
'git+https://github.com/MasterQ32/zig-network.git'
'git+https://github.com/MasterQ32/zig-uri.git'
'git+https://github.com/alexnask/iguanaTLS.git'
'git+https://github.com/truemedian/hzzp.git'
)
b2sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "$_pkgname"
git submodule init
git config submodule.deps/zfetch.url "${srcdir}/zfetch"
git config submodule.deps/zig-clap.url "${srcdir}/zig-clap"
git config submodule.deps/zig-clap.branch 'zig-master'
git config submodule.deps/tar.url "${srcdir}/zig-tar"
git config submodule.deps/zig-network.url "${srcdir}/zig-network"
git config submodule.deps/zig-uri.url "${srcdir}/zig-uri"
git config submodule.deps/iguanaTLS.url "${srcdir}/iguanaTLS"
git config submodule.deps/hzzp.url "${srcdir}/hzzp"
git submodule update
}
build() {
cd "$_pkgname"
zig build -Drelease-safe
}
package() {
cd "$_pkgname"
DESTDIR="${pkgdir}" zig build \
-Drelease-safe \
install
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}
|