summaryrefslogtreecommitdiff
path: root/docker-compose/Pkgfile
blob: 6a69cef7925cb0eb0f17bbd7f0e815995428e1da (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.2.3
    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 }

Generated by cgit