Ticket #26818: Portfile.2

File Portfile.2, 1023 bytes (added by robsonpeixoto@…, 12 years ago)

Version 0.4.2 using PortGroup github

Line 
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
3PortSystem              1.0
4PortGroup               github 1.0
5
6github.setup            bobthecow git-flow-completion 0.4.2
7
8description             Bash completion support for git-flow.
9
10long_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
15license                 Copyright (c) 2010 Justin Hileman
16homepage                https://github.com/bobthecow/git-flow-completion
17
18fetch.type              git
19
20depends_run-append      port:git-flow \
21                                                port:bash-completion
22
23universal_variant       no
24use_configure           no
25
26build {}
27
28destroot {
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}