Ticket #43260: Portfile

File Portfile, 1.5 KB (added by jul_bsd@…, 10 years ago)
Line 
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# $Id: Portfile 111353 2013-09-19 07:21:56Z ryandesign@macports.org $
3
4PortSystem          1.0
5PortGroup           github  1.0
6
7name                docker
8version             0.9.1
9github.setup        docker docker ${version}
10categories          sysutils
11platforms           darwin
12maintainers         yahoo.fr:jul_bsd openmaintainer
13license             Apache-2
14
15description         open source project to pack, ship and run any application as a lightweight container
16long_description    ${description}
17
18homepage            https://www.docker.io
19#fetch.type          git
20#git.url             https://github.com/dotcloud/docker.git
21#git.branch          release-0.9
22master_sites        https://github.com/dotcloud/docker/archive/
23distname            v${version}
24worksrcdir          ${name}-${version}
25
26checksums           rmd160  47167a35714d6c864cd9b46f117b47eeb69fa36a \
27                    sha256  9ca3505fb4386cb3cd15c1462d77bf6c48d9cee1f1c49a3b027285d65b109a54
28
29use_configure       no
30
31depends_build       port:go
32
33## based on devel/codesearch
34##     https://gist.github.com/mboersma/7954708
35#build.env           VERBOSE=1
36build.env           GOPATH=${workpath}
37build.cmd           ${prefix}/bin/go
38build.target        build
39build.post_args     docker/docker.go
40
41destroot.post_args  -a
42destroot.env        GOPATH=${prefix}
43
44livecheck.type      none