|
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 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | PortGroup xcode 1.0 |
|---|
| 5 | |
|---|
| 6 | name Platypus |
|---|
| 7 | version 3.4 |
|---|
| 8 | categories aqua devel |
|---|
| 9 | maintainers nomaintainer |
|---|
| 10 | description Program for creating application wrappers around scripts. |
|---|
| 11 | |
|---|
| 12 | long_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 | |
|---|
| 21 | homepage http://www.sveinbjorn.org/platypus/ |
|---|
| 22 | master_sites http://www.sveinbjorn.org/files/software/platypus/ |
|---|
| 23 | distname platypus${version}.src |
|---|
| 24 | use_zip yes |
|---|
| 25 | |
|---|
| 26 | checksums md5 775d39e01562a97739043644865c7062 \ |
|---|
| 27 | sha1 fdb9967f5f3edbb9f82e206455db21aa1e420496 \ |
|---|
| 28 | rmd160 2a1dc4cf5247c688706f7724ddfc0945d2805146 |
|---|
| 29 | |
|---|
| 30 | worksrcdir ${name} |
|---|
| 31 | |
|---|
| 32 | # Dummy configure to enable universal variant. |
|---|
| 33 | use_configure yes |
|---|
| 34 | configure {} |
|---|
| 35 | |
|---|
| 36 | if {! [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 | |
|---|
| 46 | livecheck.check regex |
|---|
| 47 | livecheck.url ${homepage} |
|---|
| 48 | livecheck.regex "${name} (\\d+(?:\\.\\d+)*)" |
|---|