Ticket #37797: Portfile.2

File Portfile.2, 1.1 KB (added by cooljeanius (Eric Gallager), 10 years ago)

Portfile for portfile-gen as of r114218

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$
3
4PortSystem          1.0
5
6name                portfile-gen
7version             0.2
8revision            1
9categories          sysutils macports
10maintainers         ryandesign gwmail.gwu.edu:egall openmaintainer
11platforms           darwin
12license             BSD
13supported_archs     noarch
14
15description         Generate a basic template Portfile given a few bits \
16                    of information
17long_description    ${description}.
18homepage            http://svn.macports.org/repository/macports/contrib/${name}
19
20livecheck.type      none
21
22fetch.type          svn
23svn.url             https://svn.macports.org/repository/macports/contrib/${name}
24svn.revision        114218
25
26worksrcdir          ${name}
27
28use_configure       no
29
30# should be implied by turning off configure:
31configure.ccache    no
32
33build {
34    ui_debug "${name} has no build step"
35}
36
37destroot {
38    xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/${name}
39}
40