blob: 988f4e8e41df0f153849de685defe2109d1b8a05 (
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
|
# Maintainer: Mike Yuan <me@yhndnzj.com>
pkgname=ov
pkgver=0.37.0
pkgrel=1
pkgdesc="Feature-rich terminal-based text viewer"
arch=('x86_64')
url="https://github.com/noborus/ov"
license=('MIT')
makedepends=('go' 'git')
_tag="v$pkgver"
source=("$pkgname::git+https://github.com/noborus/ov.git#tag=$_tag")
b2sums=('f1dd4bc0e7c6d92b4298817f21e4ebfc2a0365144893241abb5d263f5c5b8614edcbb68df54a2cef86bee1fddc027bea48319ff7585e1a54a8858d72237b0afc')
prepare() {
cd "$pkgname"
mkdir build/
}
build() {
cd "$pkgname"
local revision="$(git rev-parse --short "$_tag")"
export CGO_CFLAGS="$CFLAGS"
export CGO_CXXFLAGS="$CXXFLAGS"
export CGO_CPPFLAGS="$CPPFLAGS"
export CGO_LDFLAGS="$LDFLAGS"
go build \
-trimpath \
-buildmode=pie \
-mod=readonly \
-modcacherw \
-ldflags="-linkmode=external -X main.Version=$_tag -X main.Revision=$revision -extldflags '$LDFLAGS'" \
-o build
}
check() {
cd "$pkgname"
go test
}
package() {
cd "$pkgname"
install -Dm755 "build/$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dt "$pkgdir/usr/share/doc/$pkgname" -m644 ov.yaml ov-less.yaml ov-disable-default.yaml ov.plugin.zsh
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|