Ticket #37836: Portfile

File Portfile, 785 bytes (added by cooljeanius (Eric Gallager), 11 years ago)

New portfile for macportsscripts

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# $Id: Portfile 78632 2011-05-14 22:50:58Z ryandesign@macports.org $
3
4PortSystem      1.0
5PortGroup       github 1.0
6
7github.setup    cooljeanius macportsscripts 0.1.1 v
8epoch           2
9platforms       darwin
10categories      sysutils macports
11maintainers     phw gwmail.gwu.edu:egall openmaintainer
12description     Various scripts to work with MacPorts
13license         BSD
14long_description ${description}
15
16fetch.type      git
17git.url         git://github.com/cooljeanius/macportsscripts.git
18
19use_configure   no
20build   {}
21
22destroot {
23            xinstall -d -m 755 ${destroot}${prefix}/bin
24            eval xinstall -m 755 [glob ${worksrcpath}/*.sh] ${destroot}${prefix}/bin
25}
26
27livecheck.type  none