blob: 62db1192f6aa13d99028a168ccbf19347a6dfada (
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: Dasith Gunawardhana <dasith@dg10a.com>
_pkgname=packer
pkgname=${_pkgname}-git
pkgver=v1.4.3_177_g39a57af3e
pkgrel=1
pkgdesc="Packer is a tool for creating identical machine images for multiple platforms from a single source configuration."
arch=('x86_64')
url="https://www.packer.io/"
license=('MPL2')
depends=('glibc')
makedepends=('go' 'git')
conflicts=("${_pkgname}")
provides=("${_pkgname}")
source=("git+https://github.com/hashicorp/packer.git")
sha256sums=('SKIP')
pkgver() {
cd ${_pkgname}
git describe | sed 's/[- ]/_/g'
}
build() {
mkdir -p gopath
export GOPATH="${srcdir}/gopath"
export PATH="$PATH:$GOPATH/bin"
export GOFLAGS="-gcflags=all=-trimpath=${PWD} -asmflags=all=-trimpath=${PWD} -ldflags=-extldflags=-zrelro -ldflags=-extldflags=-znow"
cd ${_pkgname}
make dev
unset GOFLAGS
}
# check() {
# cd ${_pkgname}
# make test
# }
package() {
cd ${_pkgname}
install -Dm755 bin/packer "$pkgdir"/usr/bin/packer
install -m644 -D LICENSE "$pkgdir/usr/share/licenses/${_pkgname}/LICENSE"
}
|