blob: a2efd029b3401990e29b7331f4120f0d42e2d7d4 (
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: python3-jsonschema python3-six python3-dockerpty python3-docker python3-websocket-client python3-texttable python3-requests python3-yaml python3-docopt python3-cached-property python3-importlib_metadata python3-pyrsistent python3-attrs python3-paramiko python3-zipp python3-pynacl python3-bcrypt python3-distro python3-dotenv
5
6 name=docker-compose
7 version=1.26.2
8 release=1
9 source=(https://github.com/docker/compose/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd compose-$version
13 python3 setup.py build
14 python3 setup.py install --root=$PKG
15 }
|