Update docker-compose version

* Change Args build.
This commit is contained in:
Matheus Sampaio Queiroga 2022-01-24 01:35:33 -03:00 committed by Yaksh Bariya
parent e7b3c7708c
commit 678eb1fbab
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
TERMUX_PKG_HOMEPAGE=https://github.com/docker/compose
TERMUX_PKG_DESCRIPTION="Compose is a tool for defining and running multi-container Docker applications."
TERMUX_PKG_SHA256=001cf72f6bc8a8c43d100389e0bbd3d4d5f5c523f4e3f7ddd53f6a4cd2d6cb18
TERMUX_PKG_VERSION="2.2.2"
TERMUX_PKG_SHA256=22210187e73732edd9fc02f122ea61481806c703af7b73d0a7351f2e8ed7c0b8
TERMUX_PKG_VERSION="2.2.3"
TERMUX_PKG_SRCURL="https://github.com/docker/compose/archive/v${TERMUX_PKG_VERSION}.tar.gz"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_DEPENDS=docker
@ -11,7 +11,8 @@ termux_step_make() {
export GOPATH=$TERMUX_PKG_BUILDDIR
cd $TERMUX_PKG_SRCDIR
mkdir bin/
go build -o bin/docker-compose ./cmd
if ! [ -z "$GOOS" ];then export GOOS=android;fi
go build -o bin/docker-compose -ldflags="-s -w -X github.com/docker/compose/v2/internal.Version=${TERMUX_PKG_VERSION}" ./cmd
}
termux_step_make_install() {