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