Ticket #37797: Portfile.diff
File Portfile.diff, 1.5 KB (added by cooljeanius (Eric Gallager), 10 years ago) |
---|
-
Portfile
old new 5 5 6 6 name portfile-gen 7 7 version 0.2 8 categories sysutils 8 revision 1 9 categories sysutils macports 9 10 maintainers ryandesign gwmail.gwu.edu:egall openmaintainer 10 11 platforms darwin 11 12 license BSD 12 13 supported_archs noarch 13 14 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 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} 17 19 18 20 livecheck.type none 19 21 20 22 fetch.type svn 21 svn.url https://svn.macports.org/repository/macports/contrib/portfile-gen 22 svn.revision 102094 23 svn.url https://svn.macports.org/repository/macports/contrib/${name} 24 svn.revision 114218 25 26 worksrcdir ${name} 23 27 24 28 use_configure no 25 29 26 build {} 30 # should be implied by turning off configure: 31 configure.ccache no 32 33 build { 34 ui_debug "${name} has no build step" 35 } 27 36 28 37 destroot { 29 xinstall -m 755 ${work path}/${name}/${name} ${destroot}${prefix}/bin/${name}38 xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/${name} 30 39 } 31 40