|
Revision 158, 0.9 KB
(checked in by tyler, 3 years ago)
|
|
Forgot mono dependecy
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name ironpython |
|---|
| 6 | version 1.1 |
|---|
| 7 | categories devel |
|---|
| 8 | maintainers tyler@monkeypox.org |
|---|
| 9 | description IronPython is a Python implementation targeting .NET and Mono |
|---|
| 10 | long_description IronPython is a Python implementation targeting .NET and Mono |
|---|
| 11 | homepage http://www.codeplex.com/IronPython |
|---|
| 12 | platforms darwin |
|---|
| 13 | master_sites http://monkeypox.org/ports/ |
|---|
| 14 | use_configure no |
|---|
| 15 | |
|---|
| 16 | checksums md5 f4ec6910bf3e7cf07bd9d7f936c994ad |
|---|
| 17 | |
|---|
| 18 | depends_lib port:mono |
|---|
| 19 | |
|---|
| 20 | configure {} |
|---|
| 21 | build { |
|---|
| 22 | system "cd ${worksrcpath} && make -f Makefile.mono PREFIX=${prefix}" |
|---|
| 23 | } |
|---|
| 24 | |
|---|
| 25 | destroot { |
|---|
| 26 | system "cd ${worksrcpath} && make -f Makefile.mono PREFIX=${prefix} install" |
|---|
| 27 | } |
|---|
| 28 | |
|---|
| 29 | install {} |
|---|
| 30 | activate {} |
|---|
| 31 | |
|---|
| 32 | #clean { |
|---|
| 33 | # system "cd ${worksrcpath} && make -f Makefile.mono PREFIX=${prefix} clean" |
|---|
| 34 | #} |
|---|