Ticket #26818: Portfile

File Portfile, 1.4 KB (added by gorticus (Jason Mitchell), 14 years ago)
Line 
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
4PortSystem        1.0
5
6name              git-flow-bash-completion
7version           0.3.3
8description       Bash and completion support for git-flow.
9long_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                 
15maintainers       maiar.org:jason-macports
16categories        devel
17platforms         darwin
18license           MIT
19supported_archs   noarch
20
21homepage          http://github.com/bobthecow/git-flow-completion
22master_sites      github
23fetch.type        git
24git.url           git://github.com/bobthecow/git-flow-completion.git
25git.branch        b2447fe86d4fbaaa5efc
26
27depends_run-append   port:git-core port:bash-completion port:git-flow
28use_configure        no
29worksrcdir           ${distname}
30
31build { }
32
33destroot {
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
40livecheck.type    regex
41livecheck.url     ${homepage}
42livecheck.regex   {\/tree\/(\d+(?:\.\d+)*)">\1<}