Ticket #15137: Portfile

File Portfile, 885 bytes (added by aronnax@…, 16 years ago)

Updated portfile

Line 
1# $Id: Portfile 31467 2007-11-24 22:23:40Z mww@macports.org $
2
3PortSystem 1.0
4
5name                    nant
6version                 0.85
7categories              devel mono
8platforms               darwin
9maintainers             nomaintainer
10description             .NET build tool
11long_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
14homepage                http://nant.sourceforge.net/
15master_sites            sourceforge:nant
16distname                nant-${version}-src
17checksums               md5 45ae065439b6cbc0e02051b855843f50 \
18                        sha1 df97d7b542a4e561c37a0804bb8a159803cc05cd
19
20worksrcdir              nant-${version}
21patchfiles              patch-NAnt_Core-Task_cs \
22                        patch-PkgConfigFunctions.cs \
23                        patch-ScriptTask.cs
24
25depends_build           port:mono
26
27use_configure   no
28
29build.args              prefix=${prefix}
30
31destroot.destdir        prefix=${destroot}${prefix}
32post-destroot {
33        reinplace "s|${destroot}${prefix}|${prefix}|g" ${destroot}${prefix}/bin/nant
34}
35