1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup github 1.0 |
---|
5 | |
---|
6 | name docker |
---|
7 | version 0.9.1 |
---|
8 | github.setup docker docker ${version} |
---|
9 | categories sysutils |
---|
10 | platforms darwin |
---|
11 | maintainers yahoo.fr:jul_bsd openmaintainer |
---|
12 | license Apache-2 |
---|
13 | |
---|
14 | description open source project to pack, ship and run any application as a lightweight container |
---|
15 | long_description ${description} |
---|
16 | |
---|
17 | homepage https://www.docker.com |
---|
18 | master_sites https://github.com/docker/docker/archive/ |
---|
19 | distname v${version} |
---|
20 | worksrcdir ${name}-${version} |
---|
21 | |
---|
22 | checksums rmd160 47167a35714d6c864cd9b46f117b47eeb69fa36a \ |
---|
23 | sha256 9ca3505fb4386cb3cd15c1462d77bf6c48d9cee1f1c49a3b027285d65b109a54 |
---|
24 | |
---|
25 | use_configure no |
---|
26 | use_parallel_build no |
---|
27 | |
---|
28 | depends_build port:go |
---|
29 | |
---|
30 | build.env AUTO_GOPATH=1 DOCKER_CLIENTONLY=1 DOCKER_GITCOMMIT=a8a31eff10544860d2188dddabdee4d727545796 |
---|
31 | build.cmd hack/make.sh |
---|
32 | build.pre_args dynbinary |
---|
33 | |
---|
34 | destroot { |
---|
35 | xinstall -m 755 ${worksrcpath}/bundles/${version}/dynbinary/docker-${version} ${destroot}${prefix}/bin/docker |
---|
36 | } |
---|