1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name git-flow-bash-completion |
---|
7 | version 0.3.3 |
---|
8 | description Bash and completion support for git-flow. |
---|
9 | long_description Bash completion support for git-flow. The contained \ |
---|
10 | completion routines provide support for completing: \ |
---|
11 | * git-flow init, feature, hotfix and release, \ |
---|
12 | * feature, hotfix and release branches, \ |
---|
13 | * remote feature branch names (for git-flow feature track). |
---|
14 | |
---|
15 | maintainers maiar.org:jason-macports |
---|
16 | categories devel |
---|
17 | platforms darwin |
---|
18 | license MIT |
---|
19 | supported_archs noarch |
---|
20 | |
---|
21 | homepage http://github.com/bobthecow/git-flow-completion |
---|
22 | master_sites github |
---|
23 | fetch.type git |
---|
24 | git.url git://github.com/bobthecow/git-flow-completion.git |
---|
25 | git.branch b2447fe86d4fbaaa5efc |
---|
26 | |
---|
27 | depends_run-append port:git-core port:bash-completion port:git-flow |
---|
28 | use_configure no |
---|
29 | worksrcdir ${distname} |
---|
30 | |
---|
31 | build { } |
---|
32 | |
---|
33 | destroot { |
---|
34 | set tdir ${destroot}${prefix}/etc/bash_completion.d |
---|
35 | |
---|
36 | xinstall -m 0755 -d ${tdir} |
---|
37 | xinstall -m 0644 ${worksrcpath}/git-flow-completion.bash ${tdir}/git-flow |
---|
38 | } |
---|
39 | |
---|
40 | livecheck.type regex |
---|
41 | livecheck.url ${homepage} |
---|
42 | livecheck.regex {\/tree\/(\d+(?:\.\d+)*)">\1<} |
---|