blob: eb34a3e129dc7b7c810526a015188b3d6225fd5f (
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
|
# Maintainer: ml <ml-aur@ransomware.download>
pkgname=vacuum
pkgver=0.14.2
pkgrel=1
pkgdesc='fast, lightweight OpenAPI linter and quality checking tool'
arch=('aarch64' 'i686' 'x86_64')
url=https://quobix.com/vacuum/
license=('MIT')
depends=('glibc')
makedepends=('git' 'go')
source=("https://github.com/daveshanley/vacuum/archive/refs/tags/v$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('5525e3ab535aaf587025b330785e00d964740b3fbff2f76ba55428c24b8d594a')
build() {
_commit=$(bsdcat "$pkgname"-"$pkgver".tar.gz | git get-tar-commit-id)
cd "$pkgname-$pkgver"
export CGO_ENABLED=1
export CGO_LDFLAGS=$LDFLAGS
export CGO_CFLAGS=$CFLAGS
export CGO_CPPFLAGS=$CPPFLAGS
export CGO_CXXFLAGS=$CXXFLAGS
export GOFLAGS='-buildmode=pie -trimpath -modcacherw'
TZ=UTC printf -v _date '%(%FT%TZ)T' "$SOURCE_DATE_EPOCH"
go build -ldflags "-linkmode=external \
-X main.version=$pkgver -X main.commit=$_commit -X 'main.date=$_date'"
./"$pkgname" completion bash >completion.bash
./"$pkgname" completion fish >completion.fish
./"$pkgname" completion zsh >completion.zsh
}
check() {
cd "$pkgname-$pkgver"
go test -ldflags "-linkmode=external" ./...
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 "$pkgname" -t "$pkgdir"/usr/bin
install -Dm644 completion.bash "$pkgdir"/usr/share/bash-completion/completions/"$pkgname"
install -Dm644 completion.fish "$pkgdir"/usr/share/fish/vendor_completions.d/"$pkgname".fish
install -Dm644 completion.zsh "$pkgdir"/usr/share/zsh/site-functions/_"$pkgname"
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/"$pkgname"
}
|