| 1 | # $Id: Portfile 31467 2007-11-24 22:23:40Z mww@macports.org $ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name nant |
|---|
| 6 | version 0.85 |
|---|
| 7 | categories devel mono |
|---|
| 8 | platforms darwin |
|---|
| 9 | maintainers nomaintainer |
|---|
| 10 | description .NET build tool |
|---|
| 11 | long_description NAnt is a free .NET build tool. In theory it is kind of \ |
|---|
| 12 | like make without makes wrinkles. In practice its a lot like Ant. |
|---|
| 13 | |
|---|
| 14 | homepage http://nant.sourceforge.net/ |
|---|
| 15 | master_sites sourceforge:nant |
|---|
| 16 | distname nant-${version}-src |
|---|
| 17 | checksums md5 45ae065439b6cbc0e02051b855843f50 \ |
|---|
| 18 | sha1 df97d7b542a4e561c37a0804bb8a159803cc05cd |
|---|
| 19 | |
|---|
| 20 | worksrcdir nant-${version} |
|---|
| 21 | patchfiles patch-NAnt_Core-Task_cs \ |
|---|
| 22 | patch-PkgConfigFunctions.cs \ |
|---|
| 23 | patch-ScriptTask.cs |
|---|
| 24 | |
|---|
| 25 | depends_build port:mono |
|---|
| 26 | |
|---|
| 27 | use_configure no |
|---|
| 28 | |
|---|
| 29 | build.args prefix=${prefix} |
|---|
| 30 | |
|---|
| 31 | destroot.destdir prefix=${destroot}${prefix} |
|---|
| 32 | post-destroot { |
|---|
| 33 | reinplace "s|${destroot}${prefix}|${prefix}|g" ${destroot}${prefix}/bin/nant |
|---|
| 34 | } |
|---|