blob: 0da5995630cce4c2526d229826519bc19064fc01 (
plain)
1 # Description: Compose is a tool for defining and running multi-container Docker applications
2 # URL: https://docs.docker.com/compose/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: go
5
6 name=docker-compose
7 version=2.15.1
8 release=1
9 source=(https://github.com/docker/compose/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 export CGO_CFLAGS="${CFLAGS}"
13 export CGO_CPPFLAGS="${CXXFLAGS}"
14 export CGO_CXXFLAGS="${CXXFLAGS}"
15 cd compose-$version
16 go build -trimpath -o ${name} ./cmd
17 install -Dm0755 ${name} ${PKG}/usr/bin/${name}
18 }
|