Ticket #27794: Portfile

File Portfile, 1.3 KB (added by mike@…, 13 years ago)
Line 
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
4PortSystem 1.0
5
6name            ige-mac-bundler
7version         0.6.0
8categories      devel
9maintainers     flyn.org:mike
10
11description     Mac OS X application bundle utility
12
13long_description \
14                A utility that aids in the creation of Mac OS X \
15                application bundles
16
17homepage        http://sourceforge.net/projects/gtk-osx
18platforms       darwin
19
20master_sites    sourceforge:gtk-osx/GTK-OSX%20Bundle/
21
22checksums       md5     edefa2f3821d99501e98924a23329e66 \
23                sha1    2b2abff119417821595de43ce6715443f9e618e6 \
24                rmd160  feae200e467f476637002760d13f0f6ff863ce47
25
26#depends_build   port:pkgconfig
27
28#depends_lib     port:py27-gtk
29
30configure {}
31
32build {}
33
34destroot {
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
40livecheck.type  regex
41livecheck.url   ${master_sites}
42livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"