aboutsummaryrefslogtreecommitdiffstats
path: root/testing/drone/APKBUILD
blob: 6afbf7e40d8d43c88892f6f47609817572f9603f (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
50
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
# Maintainer:
pkgname=drone
pkgver=1.1.0
pkgrel=0
pkgdesc="Container-Native, Continuous Delivery Platform"
url="https://drone.io/"
arch="all"
license="custom"
makedepends="go"
options="!check"
_commands="
    $pkgname-agent:_pkg
    $pkgname-controller:_pkg
    $pkgname-server:_pkg
"
subpackages="
	$_commands
	$pkgname-doc
	"
source="$pkgname-$pkgver.tar.gz::https://github.com/drone/drone/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

export GOPATH="$srcdir"

build() {
	cd "$builddir"
	for pkg in $_commands; do
		GO111MODULE=on go build -o bin/${pkg%%:*} ./cmd/${pkg%%:*}
	done
}

package() {
	install -Dm 644 "$builddir"/LICENSE \
		"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

_pkg() {
	pkgdesc="$pkgdesc ($subpkgname)"
	install_if="$pkgname"
	install -Dm775 "$builddir"/bin/$subpkgname \
		"$subpkgdir"/usr/bin/$subpkgname
}

cleanup_srcdir() {
	go clean -modcache
	default_cleanup_srcdir
}

sha512sums="57f8073b660c2d483a57420cea798d16749e140fcf9e4647ece2bfe73701ab131a9a6cc1b4a87673a28312cea8b9949c3fde7efbea03140d9cff19ee8fa0ce9c  drone-1.1.0.tar.gz"