1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name nsisant |
---|
6 | version 1.2 |
---|
7 | categories java |
---|
8 | maintainers mdippery:gmail.com |
---|
9 | description Ant task for compiling NSIS scripts on Windows, Linux, \ |
---|
10 | and Mac systems. |
---|
11 | long_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. |
---|
14 | license GPLv2 |
---|
15 | |
---|
16 | homepage http://nsisant.sourceforge.net/ |
---|
17 | platforms darwin |
---|
18 | master_sites sourceforge |
---|
19 | checksums md5 024deabd21dc4b74591c17abc175cd92 \ |
---|
20 | sha1 6ee41098b17fd1ca9d723728bbb189945dfec777 \ |
---|
21 | rmd160 afb58c20868e2c2803d1aa36d179a53fffbc9f5e \ |
---|
22 | distname ${name}-${version}.zip |
---|
23 | use_zip yes |
---|
24 | |
---|
25 | depends_run port:apache-ant |
---|
26 | |
---|
27 | use_configure no |
---|
28 | build {} |
---|
29 | |
---|
30 | destroot { |
---|
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 | } |
---|