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 57375 2009-09-10 08:16:41Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name ige-mac-bundler |
---|
7 | version 0.6.0 |
---|
8 | categories devel |
---|
9 | maintainers flyn.org:mike |
---|
10 | |
---|
11 | description Mac OS X application bundle utility |
---|
12 | |
---|
13 | long_description \ |
---|
14 | A utility that aids in the creation of Mac OS X \ |
---|
15 | application bundles |
---|
16 | |
---|
17 | homepage http://sourceforge.net/projects/gtk-osx |
---|
18 | platforms darwin |
---|
19 | |
---|
20 | master_sites sourceforge:gtk-osx/GTK-OSX%20Bundle/ |
---|
21 | |
---|
22 | checksums md5 edefa2f3821d99501e98924a23329e66 \ |
---|
23 | sha1 2b2abff119417821595de43ce6715443f9e618e6 \ |
---|
24 | rmd160 feae200e467f476637002760d13f0f6ff863ce47 |
---|
25 | |
---|
26 | #depends_build port:pkgconfig |
---|
27 | |
---|
28 | #depends_lib port:py27-gtk |
---|
29 | |
---|
30 | configure {} |
---|
31 | |
---|
32 | build {} |
---|
33 | |
---|
34 | destroot { |
---|
35 | xinstall -m 755 -d ${destroot}${prefix}/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7 |
---|
36 | exec cp -R ${worksrcpath}/bundler ${destroot}${prefix}/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ |
---|
37 | exec make -C ${worksrcpath} bindir=${destroot}${prefix}/bin install |
---|
38 | } |
---|
39 | |
---|
40 | livecheck.type regex |
---|
41 | livecheck.url ${master_sites} |
---|
42 | livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
---|