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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup bobthecow git-flow-completion 0.4.2 |
---|
8 | |
---|
9 | name git-flow-bash-completion |
---|
10 | categories devel |
---|
11 | maintainers maiar.org:jason-macports openmaintainer |
---|
12 | license MIT |
---|
13 | |
---|
14 | description Bash completion support for git-flow. |
---|
15 | |
---|
16 | long_description The contained bash completion routines provide \ |
---|
17 | support for completing: \ |
---|
18 | \n\t* git-flow init and version \ |
---|
19 | \n\t* feature, hotfix and release branches \ |
---|
20 | \n\t* remote feature, hotfix and release branch names |
---|
21 | |
---|
22 | homepage https://github.com/bobthecow/git-flow-completion |
---|
23 | |
---|
24 | fetch.type git |
---|
25 | |
---|
26 | platforms darwin |
---|
27 | supported_archs noarch |
---|
28 | |
---|
29 | depends_run-append port:git-flow \ |
---|
30 | port:bash-completion |
---|
31 | |
---|
32 | universal_variant no |
---|
33 | use_configure no |
---|
34 | |
---|
35 | build {} |
---|
36 | |
---|
37 | destroot { |
---|
38 | xinstall -d 0755 ${destroot}${prefix}/etc/bash_completion.d |
---|
39 | copy ${worksrcpath}/git-flow-completion.bash ${destroot}${prefix}/etc/bash_completion.d/git-flow |
---|
40 | } |
---|