Ticket #37836: Portfile.diff
File Portfile.diff, 1.2 KB (added by cooljeanius (Eric Gallager), 12 years ago) |
---|
-
Portfile
old new 1 # $Id$ 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 $ 2 3 3 PortSystem 1.0 4 PortSystem 1.0 5 PortGroup github 1.0 4 6 5 name macportsscripts 6 version dev 7 github.setup cooljeanius macportsscripts 0.1.1 v 8 epoch 2 7 9 platforms darwin 8 categories sysutils 9 maintainers phw openmaintainer 10 description Various scripts to work with macports 10 categories sysutils macports 11 maintainers phw gwmail.gwu.edu:egall openmaintainer 12 description Various scripts to work with MacPorts 13 license BSD 14 long_description ${description} 11 15 12 homepage http://yum.baseurl.org/13 16 fetch.type git 14 git.url git://github.com/ derphilipp/macportsscripts.git17 git.url git://github.com/cooljeanius/macportsscripts.git 15 18 16 19 use_configure no 17 20 build {} 18 21 19 22 destroot { 20 23 xinstall -d -m 755 ${destroot}${prefix}/bin 21 eval xinstall -m 755 [glob ${worksrcpath}/* ] ${destroot}${prefix}/bin24 eval xinstall -m 755 [glob ${worksrcpath}/*.sh] ${destroot}${prefix}/bin 22 25 } 23 26 24 27 livecheck.type none