Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/Platypus/Portfile

Revision 27808, 1.3 KB (checked in by nox@…, 17 months ago)

Platypus:

  • Updated to version 3.4.
  • Ported to xcode portgroup.
  • Added universal support.
  • Added livecheck and sha1 and rmd160 checksums.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem              1.0
4PortGroup               xcode 1.0
5
6name                    Platypus
7version                 3.4
8categories              aqua devel
9maintainers             nomaintainer
10description             Program for creating application wrappers around scripts.
11
12long_description        Platypus is a program for creating application \
13                        wrappers around scripts, i.e. creating Mac OS X \
14                        applications that execute a script they are bundled \
15                        with. Scripts can thus be run transparently from the \
16                        graphical window environment without having to \
17                        resort to using the command line interface. It \
18                        supports drag and drop on created apps, running as \
19                        root using Authentication Manager and more.
20
21homepage                http://www.sveinbjorn.org/platypus/
22master_sites    http://www.sveinbjorn.org/files/software/platypus/
23distname                platypus${version}.src
24use_zip                 yes
25
26checksums               md5 775d39e01562a97739043644865c7062 \
27                                sha1 fdb9967f5f3edbb9f82e206455db21aa1e420496 \
28                                rmd160 2a1dc4cf5247c688706f7724ddfc0945d2805146
29                               
30worksrcdir              ${name}
31
32# Dummy configure to enable universal variant.
33use_configure   yes
34configure               {}
35
36if {! [variant_isset universal]} {
37        set arch ${os.arch}
38        if {! [string compare ${os.arch} powerpc]} {
39                set arch ppc
40        }
41
42        xcode.build.settings-append             ARCHS=${arch}
43        xcode.destroot.settings-append  ARCHS=${arch}
44}
45
46livecheck.check regex
47livecheck.url   ${homepage}
48livecheck.regex "${name} (\\d+(?:\\.\\d+)*)"
Note: See TracBrowser for help on using the browser.