blob: d18120d0e525baac05db733432a4700b484cadf4 (
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
|
# Maintainer: Laura Demkowicz-Duffy <laura@demkowiczduffy.co.uk>
pkgname=packer-builder-arm-image
_pkgname=packer-plugin-arm-image
pkgver=0.2.7
pkgrel=1
pkgdesc="Packer plugin for ARM images"
url="https://github.com/solo-io/${_pkgname}"
arch=('x86_64')
license=('APACHE')
depends=('glibc' 'multipath-tools' 'qemu-user-static')
makedepends=('go')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/solo-io/${_pkgname}/archive/v${pkgver}.tar.gz")
b2sums=('320a2d54644a61e1c3e02caccea3ff1833e0ad411ec329edcbce94fb68f6fb4ac83e09c3120055ebf8eeccafac89e775bfab529924f05eadd8bcfa7c189c2c9e')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
# From https://wiki.archlinux.org/title/Go_package_guidelines#Flags_and_build_options
go mod download
go build \
-buildmode=pie \
-trimpath \
-ldflags "-linkmode=external -extldflags \"${LDFLAGS}\"" \
-mod=readonly \
-modcacherw \
-o ${_pkgname} \
.
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|