mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 15:12:02 +01:00
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
# 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"
|