Skip to content

Commit 892cd4d

Browse files
committed
Added missing jars to sign & changed identifier
1 parent 05c0e2c commit 892cd4d

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

build/build.xml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@
510510
name="Processing"
511511
displayName="Processing"
512512
executableName="Processing"
513-
identifier="org.processingfoundation.four"
513+
identifier="org.processing.app"
514514
signature="Pde4"
515515
icon="macos/processing.icns"
516516
copyright="© The Processing Foundation"
@@ -811,7 +811,16 @@
811811
-->
812812

813813
<property name="unpack.jssc" value="macos/work/Processing.app/Contents/Java/modes/java/libraries/serial/library/jssc" />
814-
<unzip src="${unpack.jssc}.jar" dest="${unpack.jssc}" />
814+
<unzip src="${unpack.jssc}.jar" dest="${unpack.jssc}-unpack" />
815+
816+
<property name="unpack.core" value="macos/work/Processing.app/Contents/Java/core" />
817+
<unzip src="${unpack.core}.jar" dest="${unpack.core}-unpack" />
818+
819+
<property name="unpack.jna" value="macos/work/Processing.app/Contents/Java/jna" />
820+
<unzip src="${unpack.jna}.jar" dest="${unpack.jna}-unpack" />
821+
822+
<property name="unpack.core2" value="macos/work/Processing.app/Contents/Java/core/library/core" />
823+
<unzip src="${unpack.core2}.jar" dest="${unpack.core2}-unpack" />
815824

816825
<!-- <unzip src="macos/work/Processing.app/Contents/Java/modes/java/libraries/serial/library/jssc.jar" dest="macos/work/Processing.app/Contents/Java/modes/java/libraries/serial/library/jssc" /> -->
817826

@@ -853,14 +862,20 @@
853862
<zip destfile="${unpack.jogl}.jar" basedir="${unpack.jogl}" />
854863
<zip destfile="${unpack.gluegen}.jar" basedir="${unpack.gluegen}" />
855864
-->
856-
<zip destfile="${unpack.jssc}.jar" basedir="${unpack.jssc}" />
865+
<zip destfile="${unpack.jssc}.jar" basedir="${unpack.jssc}-unpack" />
866+
<zip destfile="${unpack.core}.jar" basedir="${unpack.core}-unpack" />
867+
<zip destfile="${unpack.jna}.jar" basedir="${unpack.jna}-unpack" />
868+
<zip destfile="${unpack.core2}.jar" basedir="${unpack.core2}-unpack" />
857869

858870
<!-- delete the temporary directories w/ the jar contents -->
859871
<!--
860872
<delete dir="${unpack.jogl}" />
861873
<delete dir="${unpack.gluegen}" />
862874
-->
863-
<delete dir="${unpack.jssc}" />
875+
<delete dir="${unpack.jssc}-unpack" />
876+
<delete dir="${unpack.core}-unpack" />
877+
<delete dir="${unpack.jna}-unpack" />
878+
<delete dir="${unpack.core2}-unpack" />
864879

865880
<!-- sign the outer application, now that we've finished all the contents -->
866881
<exec executable="/usr/bin/codesign" dir="macos/work" failonerror="true">

0 commit comments

Comments
 (0)