void-packages/srcpkgs/docker-buildx/template

21 lines
769 B
Bash

# Template file for 'docker-buildx'
pkgname=docker-buildx
version=0.13.1
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=6e77b77d9b7fae6f00955968569ec32673ae6e2bed31587ea016f9a5169b0f61
post_install() {
vmkdir usr/libexec/docker/cli-plugins
mv "${DESTDIR}/usr/bin/buildx" "${DESTDIR}/usr/libexec/docker/cli-plugins/docker-buildx"
}