blob: 71ea9722d00b8fc4a6056ab832943cb5c1cc7c02 (
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: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
_pkgauthor=goplus
pkgname=ixgo
pkgver=1.1.1
pkgrel=1
pkgdesc="The Go/XGo Interpreter"
arch=('x86_64' 'aarch64')
url="https://github.com/${_pkgauthor}/${pkgname}"
license=('Apache-2.0')
provides=("${pkgname}")
conflicts=('igop')
replaces=('igop')
makedepends=('go')
source=("${pkgname}-${pkgver}.tgz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('3e3902b9b43bdadcd53e6ce5a5158184e27efa315e35371ea2297226b5598d6f')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
go mod tidy
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export CGO_ENABLED=0
if [[ -f .ldflags ]]; then
ldflags=$(<.ldflags)
else
# interim until commit fix is released
ldflags="-checklinkname=0"
fi
go build -trimpath -ldflags "${ldflags}" -o "${pkgname}" ./cmd/${pkgname}
}
package() {
cd ${srcdir}/${pkgname}-${pkgver} || exit 1
install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}
|