Ticket #23321: Portfile

File Portfile, 1.1 KB (added by mdippery@…, 14 years ago)

Portfile

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                nsisant
6version             1.2
7categories          java
8maintainers         mdippery:gmail.com
9description         Ant task for compiling NSIS scripts on Windows, Linux, \
10                    and Mac systems.
11long_description    An Ant task used to compile NSIS scripts.  This is \
12                    helpful for automating the build process of projects that \
13                    use NSIS for their installer.
14license             GPLv2
15
16homepage            http://nsisant.sourceforge.net/
17platforms           darwin
18master_sites        sourceforge
19checksums           md5 024deabd21dc4b74591c17abc175cd92 \
20                    sha1 6ee41098b17fd1ca9d723728bbb189945dfec777 \
21                    rmd160 afb58c20868e2c2803d1aa36d179a53fffbc9f5e \
22distname            ${name}-${version}.zip
23use_zip             yes
24
25depends_run         port:apache-ant
26
27use_configure       no
28build               {}
29
30destroot {
31    xinstall -m 755 -d ${destroot}${prefix}/share/java/apache-ant/lib
32    xinstall -m 644 ${workpath}/${name}-${version}.jar ${destroot}${prefix}/share/java/apache-ant/lib
33}