Skip to content

Commit

Permalink
issue #259 allow me to build mac releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Remco Bouckaert authored and Remco Bouckaert committed Jan 23, 2015
1 parent 3bd1873 commit 102783a
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,9 @@
<!-- Define the appbundler task -->
<taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="../beast2/lib/bundler/appbundler-1.0.jar"/>

<!--property name="AppleSigner" value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)" /-->
<property name="AppleSigner" value="Developer ID Application: Remco Bouckaert (LHFJWE5U63)" />

<!-- Create the app bundle -->
<target name="mac">
<delete dir="${Mac_package_dir}" />
Expand Down Expand Up @@ -487,7 +490,7 @@
<exec executable="codesign">
<arg value="--deep"/>
<arg value="-s"/>
<arg value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)"/>
<arg value="${AppleSigner}"/>
<arg value="-v"/>
<arg value="${Mac_package_dir}/${BEAST_name}.app"/>
</exec>
Expand All @@ -514,7 +517,7 @@
<exec executable="codesign">
<arg value="--deep"/>
<arg value="-s"/>
<arg value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)"/>
<arg value="${AppleSigner}"/>
<arg value="-v"/>
<arg value="${Mac_package_dir}/${BEAUti_name}.app"/>
</exec>
Expand All @@ -539,7 +542,7 @@
<exec executable="codesign">
<arg value="--deep"/>
<arg value="-s"/>
<arg value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)"/>
<arg value="${AppleSigner}"/>
<arg value="-v"/>
<arg value="${Mac_package_dir}/${LogCombiner_name}.app"/>
</exec>
Expand All @@ -564,7 +567,7 @@
<exec executable="codesign">
<arg value="--deep"/>
<arg value="-s"/>
<arg value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)"/>
<arg value="${AppleSigner}"/>
<arg value="-v"/>
<arg value="${Mac_package_dir}/${TreeAnnotator_name}.app"/>
</exec>
Expand All @@ -587,7 +590,7 @@

<exec executable="codesign">
<arg value="-s"/>
<arg value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)"/>
<arg value="${AppleSigner}"/>
<arg value="-v"/>
<arg value="${Mac_package_dir}/DensiTree.app"/>
</exec>
Expand All @@ -612,7 +615,7 @@
<exec executable="codesign">
<arg value="--deep"/>
<arg value="-s"/>
<arg value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)"/>
<arg value="${AppleSigner}"/>
<arg value="-v"/>
<arg value="${Mac_package_dir}/${AppStore_name}.app"/>
</exec>
Expand All @@ -626,7 +629,7 @@

<exec executable="codesign">
<arg value="-s"/>
<arg value="Developer ID Application: Alexei Drummond (6M6Y6L7RUP)"/>
<arg value="${AppleSigner}"/>
<arg value="-v"/>
<arg value="${Mac_dir}/${BEAST_name} v${version}.dmg"/>
</exec>
Expand Down

0 comments on commit 102783a

Please sign in to comment.