void-packages/srcpkgs/docker-buildx/template

21 lines
769 B
Bash

# Template file for 'docker-buildx'
pkgname=docker-buildx
version=0.17.0
revision=1
build_style=go
go_import_path="github.com/docker/buildx"
go_package="./cmd/buildx"
go_ldflags="-X github.com/docker/buildx/version.Version=v${version}"
depends="docker-cli"
short_desc="Docker CLI plugin for extended build capabilities with BuildKit"
maintainer="Daniel Lewan <daniel@teddydd.me>"
license="Apache-2.0"
homepage="https://docs.docker.com/buildx/working-with-buildx/"
distfiles="https://github.com/docker/buildx/archive/refs/tags/v${version}.tar.gz"
checksum=f846f36dc93d78e9b1c94b716279a04f1d6f58ef5d445c6615ec8e5e3a7b5efa
post_install() {
vmkdir usr/libexec/docker/cli-plugins
mv "${DESTDIR}/usr/bin/buildx" "${DESTDIR}/usr/libexec/docker/cli-plugins/docker-buildx"
}