1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4; -*- |
---|
2 | # $Id: Portfile 48920 2009-03-31 11:28:38Z ryandesign@macports.org $ |
---|
3 | # vim: set fileencoding=utf-8 tabstop=4 shiftwidth=4 softtabstop=4 noexpandtab filetype=tcl : |
---|
4 | |
---|
5 | PortSystem 1.0 |
---|
6 | |
---|
7 | name oorexx |
---|
8 | version 3.2.0 |
---|
9 | categories lang |
---|
10 | platforms darwin |
---|
11 | maintainers krischik |
---|
12 | description Open Object Rexx is an interpreter for the Rexx language |
---|
13 | long_description ooRexx is an object orientated extension to \ |
---|
14 | the Rexx language. Rexx is designed to be an easily \ |
---|
15 | readable, but powerful scripting and embedded macro \ |
---|
16 | language. |
---|
17 | |
---|
18 | universal_variant no |
---|
19 | |
---|
20 | # Force 32-bit, inline-asm |
---|
21 | if {$build_arch == "x86_64"} { |
---|
22 | configure.build_arch i386 |
---|
23 | } elseif {$build_arch == "ppc64"} { |
---|
24 | configure.build_arch ppc |
---|
25 | } |
---|
26 | |
---|
27 | homepage http://oorexx.sourceforge.net/ |
---|
28 | master_sites sourceforge:oorexx |
---|
29 | distname ooRexx-${version} |
---|
30 | use_parallel_build yes |
---|
31 | build.args --jobs=${build.jobs} |
---|
32 | |
---|
33 | checksums md5 4a3220466acd13028311e3498efb306a \ |
---|
34 | sha1 d21dbc130cd38831cdc35c38d889defa97cfef82 \ |
---|
35 | rmd160 3f1c08611eb24b05b2657a9de9da583a0699e1b8 |
---|
36 | |
---|