Created
February 28, 2015 14:20
-
-
Save djmaze/0b63517c1d4d489b0704 to your computer and use it in GitHub Desktop.
PKGBUILD for docker-compose 1.1.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Maintainer: Iwan Timmer <[email protected]> | |
| #Contributor: Vincent Demeester <[email protected]> | |
| #Contributor: Josh VanderLinden <[email protected]> | |
| pkgname=docker-compose | |
| pkgver=1.1.0 | |
| _pkgver=1.1.0 | |
| pkgrel=1 | |
| pkgdesc="Fast, isolated development environments using Docker" | |
| depends=('python2-docopt' 'python2-yaml' 'python2-requests' 'python2-pip' | |
| 'python2-six' 'python2-texttable' 'python2-websocket-client-pebble' | |
| 'python2-docker-py>=0.7.1' 'python2-dockerpty' 'docker' 'python2-certifi') | |
| arch=('x86_64' 'i686') | |
| source=("https://github.com/docker/docker-compose/archive/$_pkgver.tar.gz") | |
| url="http://www.fig.sh/" | |
| license="BSD" | |
| sha256sums=('f6794ba5f8b1df16bdc4720679411d094c4cec3f5baa14cc834a270aeb924d73') | |
| build() { | |
| cd $srcdir/compose-$_pkgver | |
| sed -i 's/==/>=/g' requirements.txt | |
| python2 setup.py build | |
| } | |
| package() { | |
| cd $srcdir/compose-$_pkgver | |
| python2 setup.py install --root=$pkgdir | |
| install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment