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 | categories sysutils |
---|
9 | maintainers ryandesign gwmail.gwu.edu:egall openmaintainer |
---|
10 | platforms darwin |
---|
11 | license BSD |
---|
12 | supported_archs noarch |
---|
13 | |
---|
14 | description Generate a basic template Portfile given a few bits of information |
---|
15 | long_description ${description} |
---|
16 | homepage http://svn.macports.org/repository/macports/contrib/portfile-gen |
---|
17 | |
---|
18 | livecheck.type none |
---|
19 | |
---|
20 | fetch.type svn |
---|
21 | svn.url https://svn.macports.org/repository/macports/contrib/portfile-gen |
---|
22 | svn.revision 102094 |
---|
23 | |
---|
24 | use_configure no |
---|
25 | |
---|
26 | build {} |
---|
27 | |
---|
28 | destroot { |
---|
29 | xinstall -m 755 ${workpath}/${name}/${name} ${destroot}${prefix}/bin/${name} |
---|
30 | } |
---|
31 | |
---|