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 | github.setup bobthecow git-flow-completion 0.4.2 |
---|
7 | |
---|
8 | description Bash completion support for git-flow. |
---|
9 | |
---|
10 | long_description The contained completion routines provide support for completing: \ |
---|
11 | \n\t* git-flow init and version \ |
---|
12 | \n\t* feature, hotfix and release branches \ |
---|
13 | \n\t* remote feature, hotfix and release branch names |
---|
14 | |
---|
15 | license Copyright (c) 2010 Justin Hileman |
---|
16 | homepage https://github.com/bobthecow/git-flow-completion |
---|
17 | |
---|
18 | fetch.type git |
---|
19 | |
---|
20 | depends_run-append port:git-flow \ |
---|
21 | port:bash-completion |
---|
22 | |
---|
23 | universal_variant no |
---|
24 | use_configure no |
---|
25 | |
---|
26 | build {} |
---|
27 | |
---|
28 | destroot { |
---|
29 | xinstall -d ${destroot}${prefix}/etc/bash_completion.d |
---|
30 | copy ${worksrcpath}/git-flow-completion.bash ${destroot}${prefix}/etc/bash_completion.d/git-flow |
---|
31 | } |
---|