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 84550 2011-09-27 21:05:11Z snc@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup nvie gitflow 0.4.1 |
---|
8 | fetch.type git |
---|
9 | |
---|
10 | name git-flow |
---|
11 | categories devel |
---|
12 | platforms darwin |
---|
13 | maintainers maiar.org:jason-macports openmaintainer |
---|
14 | license BSD |
---|
15 | supported_archs noarch |
---|
16 | |
---|
17 | description Git extensions for Vincent Driessen branching. |
---|
18 | |
---|
19 | long_description A collection of Git extensions to provide high-level \ |
---|
20 | repository operations for Vincent Driessen branching. |
---|
21 | |
---|
22 | depends_build-append port:git-core |
---|
23 | |
---|
24 | depends_run-append port:getopt |
---|
25 | |
---|
26 | post-fetch { |
---|
27 | # Does the github portgroup support 'clone --recursive'? |
---|
28 | # This will be removed once the python re-write is complete. |
---|
29 | system "cd ${worksrcpath} && git submodule update --init" |
---|
30 | } |
---|
31 | |
---|
32 | use_configure no |
---|
33 | |
---|
34 | build {} |
---|
35 | |
---|
36 | destroot.destdir prefix=${destroot}${prefix} |
---|