root/trunk/IronPython/Portfile

Revision 158, 0.9 KB (checked in by tyler, 3 years ago)

Forgot mono dependecy

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