Creating OSX installer stub

This commit is contained in:
Jindra Petřík
2015-05-09 12:48:02 +02:00
parent 7ea4f2663e
commit 6a66602b90

View File

@@ -308,15 +308,19 @@
<fileset id="xarfileset" dir="${app.installer.dir}/flat">
</fileset>
<pathconvert refid="xarfileset" property="xarconverted" pathsep=" " />
<pathconvert refid="xarfileset" property="xarconverted" pathsep=" ">
<map from="${app.installer.dir}/flat/" to="" />
</pathconvert>
<echo>
${xarconverted}
</echo>
<exec executable="xar" failonerror="true" dir="${app.installer.dir}/flat">
<arg value="--compression" />
<arg value="- -compression" />
<arg value="none" />
<arg value="-cf" />
<arg value="${pkg.file}" />
<arg line="${xarconverted}" />
</exec>
</exec>
</target>