@@ -50,7 +50,7 @@ compose.desktop {
50
50
51
51
nativeDistributions{
52
52
modules(" jdk.jdi" , " java.compiler" , " jdk.accessibility" )
53
- targetFormats(TargetFormat .Dmg , TargetFormat .Msi , TargetFormat .Deb , TargetFormat . Pkg )
53
+ targetFormats(TargetFormat .Dmg , TargetFormat .Msi , TargetFormat .Deb )
54
54
packageName = " Processing"
55
55
56
56
macOS{
@@ -162,6 +162,22 @@ tasks.register<Exec>("packageCustomDmg"){
162
162
app
163
163
)
164
164
}
165
+ tasks.register<Exec >(" packagePkg" ){
166
+ dependsOn(" createDistributable" )
167
+ group = " compose desktop"
168
+ val distributable = tasks.named<AbstractJPackageTask >(" createDistributable" ).get()
169
+ val app = distributable.destinationDir.get().file(" ${distributable.packageName.get()} .app" ).asFile
170
+ val target = app.parentFile.parentFile.resolve(" pkg/${distributable.packageName.get()} -$version .pkg" )
171
+ target.parentFile.mkdirs()
172
+
173
+ commandLine(" pkgbuild" ,
174
+ " --install-location" , " /Applications" ,
175
+ " --identifier" , " ${rootProject.group} .app" ,
176
+ " --version" , version,
177
+ " --component" , app,
178
+ target
179
+ )
180
+ }
165
181
166
182
tasks.register<Exec >(" packageCustomMsi" ){
167
183
onlyIf { org.gradle.internal.os.OperatingSystem .current().isWindows }
@@ -205,6 +221,8 @@ tasks.register("generateSnapConfiguration"){
205
221
processing:
206
222
command: opt/processing/bin/Processing
207
223
desktop: opt/processing/lib/processing-Processing.desktop
224
+ environment:
225
+ LD_LIBRARY_PATH: ${' $' } SNAP/lib:${' $' } LD_LIBRARY_PATH
208
226
plugs:
209
227
- desktop
210
228
- desktop-legacy
@@ -216,12 +234,9 @@ tasks.register("generateSnapConfiguration"){
216
234
plugin: dump
217
235
source: deb/processing_$version -1_$snaparch .deb
218
236
source-type: deb
219
- stage-packages:
220
- - openjdk-17-jdk
221
237
override-prime: |
222
238
snapcraftctl prime
223
239
chmod -R +x opt/processing/lib/app/resources/jdk-*
224
- rm -vf usr/lib/jvm/java-17-openjdk-*/lib/security/cacerts
225
240
""" .trimIndent()
226
241
dir.file(" ../snapcraft.yaml" ).asFile.writeText(content)
227
242
}
@@ -249,14 +264,12 @@ tasks.register<Zip>("zipDistributable"){
249
264
}
250
265
251
266
afterEvaluate{
252
- tasks.named(" createDistributable" ).configure{
253
- finalizedBy(" zipDistributable" )
254
- }
255
267
tasks.named(" packageDmg" ).configure{
256
268
dependsOn(" packageCustomDmg" )
257
269
group = " compose desktop"
258
270
actions = emptyList()
259
271
}
272
+
260
273
tasks.named(" packageMsi" ).configure{
261
274
dependsOn(" packageCustomMsi" )
262
275
group = " compose desktop"
@@ -268,7 +281,7 @@ afterEvaluate{
268
281
){
269
282
dependsOn(" notarizeDmg" )
270
283
}
271
- dependsOn(" packageSnap" )
284
+ dependsOn(" packageSnap" , " zipDistributable " , " packagePkg " )
272
285
}
273
286
}
274
287
0 commit comments