-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.xml
517 lines (444 loc) · 20.9 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<?xml version="1.0" encoding="UTF-8"?>
<project name="archivo" default="archivo">
<property name="title" value="Archivo"/>
<property name="version" value="1.1.0"/>
<property name="copyright" value="2016 Straylight Labs LLC"/>
<!-- Overwrite these in build.properties if necessary -->
<property name="signtool.bin" value="C:\Program Files (x86)\Windows Kits\8.1\bin\x86\signtool.exe"/>
<property name="signtool.cert" value="C:\Users\todd\OneDrive\Documents\Straylight Labs\Straylight Code Signing.p12"/>
<property environment="env"/>
<property file="build.properties"/>
<!-- Uncomment the following property if no tests compilation is needed -->
<property name="skip.tests" value="true"/>
<!-- Compiler options -->
<property name="compiler.debug" value="on"/>
<property name="compiler.generate.no.warnings" value="off"/>
<property name="compiler.args" value=""/>
<property name="compiler.max.memory" value="700m"/>
<patternset id="ignored.files">
<exclude name="**/*.hprof/**"/>
<exclude name="**/*.pyc/**"/>
<exclude name="**/*.pyo/**"/>
<exclude name="**/*.rbc/**"/>
<exclude name="**/*~/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.bundle/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/.tox/**"/>
<exclude name="**/CVS/**"/>
<exclude name="**/RCS/**"/>
<exclude name="**/SCCS/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/rcs/**"/>
<exclude name="**/vssver.scc/**"/>
<exclude name="**/vssver2.scc/**"/>
</patternset>
<patternset id="library.patterns">
<include name="*.war"/>
<include name="*.ear"/>
<include name="*.apk"/>
<include name="*.zip"/>
<include name="*.swc"/>
<include name="*.ane"/>
<include name="*.egg"/>
<include name="*.jar"/>
</patternset>
<patternset id="compiler.resources">
<exclude name="**/?*.java"/>
<exclude name="**/?*.form"/>
<exclude name="**/?*.class"/>
<exclude name="**/?*.groovy"/>
<exclude name="**/?*.scala"/>
<exclude name="**/?*.flex"/>
<exclude name="**/?*.kt"/>
<exclude name="**/?*.clj"/>
</patternset>
<!-- Project Libraries -->
<path id="library.controlsfx.classpath">
<pathelement location="${basedir}/lib/controlsfx-8.40.10.jar"/>
</path>
<path id="library.hola.classpath">
<pathelement location="${basedir}/lib/hola-0.2.2.jar"/>
</path>
<path id="library.httpclient.classpath">
<pathelement location="${basedir}/lib/commons-codec-1.10.jar"/>
<pathelement location="${basedir}/lib/commons-logging-1.2.jar"/>
<pathelement location="${basedir}/lib/httpclient-4.5.2.jar"/>
<pathelement location="${basedir}/lib/httpcore-4.4.4.jar"/>
<pathelement location="${basedir}/lib/httpmime-4.5.2.jar"/>
</path>
<path id="library.json.classpath">
<pathelement location="${basedir}/lib/json-snapshot-20150723.jar"/>
</path>
<path id="library.logback.classpath">
<pathelement location="${basedir}/lib/logback-classic-1.1.7.jar"/>
<pathelement location="${basedir}/lib/logback-core-1.1.7.jar"/>
</path>
<path id="library.slf4j-api.classpath">
<pathelement location="${basedir}/lib/slf4j-api-1.7.21.jar"/>
</path>
<path id="library.tivo-libre.classpath">
<pathelement location="${basedir}/lib/tivo-libre-0.7.4.jar"/>
</path>
<path id="library.mixpanel.classpath">
<pathelement location="${basedir}/lib/mixpanel-java-1.4.4.jar"/>
</path>
<!-- Modules -->
<!-- Module Archivo -->
<dirname property="module.archivo.basedir" file="${ant.file}"/>
<property name="compiler.args.archivo" value="-encoding UTF-8 -source 8 ${compiler.args}"/>
<property name="archivo.output.dir" value="${module.archivo.basedir}/out/production/Archivo"/>
<property name="archivo.testoutput.dir" value="${module.archivo.basedir}/out/test/Archivo"/>
<property name="artifact.output.archivo" value="${basedir}/out/artifacts/Archivo"/>
<path id="archivo.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="archivo.module.production.classpath">
<path refid="library.json.classpath"/>
<path refid="library.httpclient.classpath"/>
<path refid="library.tivo-libre.classpath"/>
<path refid="library.slf4j-api.classpath"/>
<path refid="library.logback.classpath"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
<path refid="library.controlsfx.classpath"/>
</path>
<path id="archivo.runtime.production.module.classpath">
<pathelement location="${archivo.output.dir}"/>
<path refid="library.json.classpath"/>
<path refid="library.httpclient.classpath"/>
<path refid="library.tivo-libre.classpath"/>
<path refid="library.slf4j-api.classpath"/>
<path refid="library.logback.classpath"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
<path refid="library.controlsfx.classpath"/>
</path>
<path id="archivo.module.classpath">
<pathelement location="${archivo.output.dir}"/>
<path refid="library.json.classpath"/>
<path refid="library.httpclient.classpath"/>
<path refid="library.tivo-libre.classpath"/>
<path refid="library.slf4j-api.classpath"/>
<path refid="library.logback.classpath"/>
<pathelement location="${idea.home}/lib/hamcrest-core-1.3.jar"/>
<pathelement location="${idea.home}/lib/hamcrest-library-1.3.jar"/>
<pathelement location="${idea.home}/lib/junit-4.11.jar"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
<path refid="library.controlsfx.classpath"/>
</path>
<path id="archivo.runtime.module.classpath">
<pathelement location="${archivo.testoutput.dir}"/>
<pathelement location="${archivo.output.dir}"/>
<path refid="library.json.classpath"/>
<path refid="library.httpclient.classpath"/>
<path refid="library.tivo-libre.classpath"/>
<path refid="library.slf4j-api.classpath"/>
<path refid="library.logback.classpath"/>
<pathelement location="${idea.home}/lib/hamcrest-core-1.3.jar"/>
<pathelement location="${idea.home}/lib/hamcrest-library-1.3.jar"/>
<pathelement location="${idea.home}/lib/junit-4.11.jar"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
<path refid="library.controlsfx.classpath"/>
</path>
<patternset id="excluded.from.module.archivo">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.archivo">
<patternset refid="excluded.from.module.archivo"/>
</patternset>
<path id="archivo.module.sourcepath">
<dirset dir="${module.archivo.basedir}">
<include name="src"/>
<include name="resources"/>
</dirset>
</path>
<path id="archivo.module.test.sourcepath">
<dirset dir="${module.archivo.basedir}">
<include name="test"/>
</dirset>
</path>
<target name="compile.module.archivo" depends="compile.module.archivo.production,compile.module.archivo.tests"
description="Compile module Archivo"/>
<target name="compile.module.archivo.production" description="Compile module Archivo; production classes">
<mkdir dir="${archivo.output.dir}"/>
<javac destdir="${archivo.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}"
memorymaximumsize="${compiler.max.memory}" fork="true" includeantruntime="false">
<compilerarg line="${compiler.args.archivo}"/>
<bootclasspath refid="archivo.module.bootclasspath"/>
<classpath refid="archivo.module.production.classpath"/>
<src refid="archivo.module.sourcepath"/>
<patternset refid="excluded.from.compilation.archivo"/>
</javac>
<copy todir="${archivo.output.dir}">
<fileset dir="${module.archivo.basedir}/src">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
<fileset dir="${module.archivo.basedir}/resources">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.archivo.tests" depends="compile.module.archivo.production"
description="compile module Archivo; test classes" unless="skip.tests">
<mkdir dir="${archivo.testoutput.dir}"/>
<javac destdir="${archivo.testoutput.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}"
memorymaximumsize="${compiler.max.memory}" fork="true" includeantruntime="false">
<compilerarg line="${compiler.args.archivo}"/>
<bootclasspath refid="archivo.module.bootclasspath"/>
<classpath refid="archivo.module.classpath"/>
<src refid="archivo.module.test.sourcepath"/>
<patternset refid="excluded.from.compilation.archivo"/>
</javac>
<copy todir="${archivo.testoutput.dir}">
<fileset dir="${module.archivo.basedir}/test">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="clean.module.archivo" description="cleanup module">
<delete dir="${archivo.output.dir}"/>
<delete dir="${archivo.testoutput.dir}"/>
</target>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.archivo, clean.artifact.archivo" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.archivo" description="build all modules"/>
<target name="init.artifacts">
<property name="artifacts.temp.dir" value="${basedir}/__artifacts_temp"/>
<mkdir dir="${artifacts.temp.dir}"/>
<property name="artifact.temp.output.Archivo" value="${artifacts.temp.dir}/Archivo.jar"/>
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml" uri="javafx:com.sun.javafx.tools.ant"
classpath=".:${env.JAVA_HOME}/lib/ant-javafx.jar"/>
</target>
<target name="clean.artifact.archivo" description="clean Archivo artifact output">
<delete dir="${artifact.output.archivo}"/>
</target>
<target name="artifact.archivo" depends="init.artifacts, compile.module.archivo"
description="Build 'Archivo' artifact" xmlns:fx="javafx:com.sun.javafx.tools.ant">
<mkdir dir="${artifact.output.archivo}"/>
<copy todir="${artifact.temp.output.Archivo}">
<fileset dir="${basedir}/lib" includes="**/*.jar"/>
</copy>
<copy todir="${artifact.temp.output.Archivo}/resources/">
<fileset dir="${basedir}/resources/"/>
</copy>
<copy tofile="${artifact.temp.output.Archivo}/logback.xml" file="${basedir}/log/logback-production.xml"/>
<copy todir="${artifact.temp.output.Archivo}/">
<fileset dir="${archivo.output.dir}" includes="**/*.class"/>
<fileset dir="${archivo.output.dir}" includes="**/*.fxml"/>
</copy>
<fx:fileset id="archivo_libs" dir="${artifact.temp.output.Archivo}" includes="**/*.jar">
<exclude name="Archivo.jar"/>
</fx:fileset>
<fx:application id="Archivo_id" name="Archivo" mainClass="net.straylightlabs.archivo.Archivo"
version="${version}"/>
<fx:csstobin outdir="${artifact.temp.output.Archivo}">
<fileset dir="${artifact.temp.output.Archivo}" includes="**/*.css"/>
</fx:csstobin>
<fx:jar destfile="${artifact.temp.output.Archivo}/Archivo.jar">
<fx:application refid="Archivo_id"/>
<fx:platform javafx="8.0">
<fx:jvmarg value="-Xmx512m"/>
</fx:platform>
<fx:resources>
<fx:fileset dir="${artifact.temp.output.Archivo}" includes="*.jar"/>
</fx:resources>
<fileset dir="${artifact.temp.output.Archivo}" excludes="**/*.jar"/>
<manifest/>
</fx:jar>
</target>
<target name="build.all.artifacts" depends="artifact.archivo" description="Build all artifacts">
<!-- Delete temporary files -->
<delete dir="${artifacts.temp.dir}"/>
</target>
<taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="lib/appbundler-1.0ea.jar"/>
<target name="archivo.dmg" depends="artifact.archivo">
<property name="app.dir" value="${artifact.output.archivo}/Archivo.app"/>
<delete dir="${app.dir}" failonerror="false"/>
<bundleapp
jvmrequired="1.8"
outputdirectory="${artifact.output.archivo}"
name="${title}" displayname="${title}"
identifier="net.straylightlabs.archivo"
executableName="${title}"
shortversion="${version}"
icon="package/macosx/archivo.icns"
copyright="${copyright}"
applicationCategory="public.app-category.entertainment"
mainclassname="net.straylightlabs.archivo.Archivo">
<classpath dir="${artifact.temp.output.Archivo}" includes="*.jar"/>
<arch name="x86_64"/>
<option value="-Djava.net.preferIPv4Stack=true"/>
<argument value="-tooldir"/>
<argument value="$APP_ROOT/Contents/MacOS"/>
</bundleapp>
<!-- Include our platform-specific tools -->
<copy todir="${app.dir}/Contents/MacOS/">
<fileset dir="${basedir}/package/macosx/tools/"/>
<fileset dir="${basedir}/package/all/"/>
</copy>
<chmod perm="755">
<fileset dir="${app.dir}/Contents/MacOS/" excludes="comskip.*"/>
</chmod>
<!-- Sign the executables -->
<apply executable="codesign">
<arg line="-f -s 'Developer ID Application: Todd Kulesza'"/>
<fileset dir="${app.dir}/Contents/MacOS/" excludes="Archivo"/>
</apply>
<exec executable="codesign">
<arg line="-f -s 'Developer ID Application: Todd Kulesza' ${app.dir}"/>
</exec>
<!-- Verify codesigning and gatekeeper -->
<exec executable="codesign" failonerror="true">
<arg line="-vv ${app.dir}"/>
</exec>
<exec executable="spctl" failonerror="true">
<arg line="-vv --assess --type execute ${app.dir}"/>
</exec>
<!-- Delete temporary files -->
<delete dir="${artifacts.temp.dir}"/>
<property name="dmg.name" value="${title}"/>
<property name="dmg.path" value="${artifact.output.archivo}/${dmg.name}.dmg"/>
<property name="dmg.path.tmp" value="${artifact.output.archivo}/${dmg.name}.tmp.dmg"/>
<property name="mountdir" value="/tmp"/>
<delete file="${dmg.path}" quiet="yes" failonerror="false"/>
<!-- Create a temporary image -->
<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
<arg value="create"/>
<arg value="-srcfolder"/>
<arg value="${app.dir}"/>
<arg value="-volname"/>
<arg value="${dmg.name}"/>
<arg value="-ov"/>
<arg value="${dmg.path.tmp}"/>
<arg value="-format"/>
<arg value="UDRW"/>
</exec>
<!-- Attach the temporary image -->
<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
<arg value="attach"/>
<arg value="${dmg.path.tmp}"/>
<arg value="-mountroot"/>
<arg value="${mountdir}/"/>
</exec>
<!-- Copy the background, the volume icon and DS_Store files -->
<mkdir dir="${mountdir}/${dmg.name}/.background"/>
<copy file="${basedir}/package/macosx/background.tiff"
tofile="${mountdir}/${dmg.name}/.background/background.tiff"
overwrite="true"/>
<copy file="${basedir}/package/macosx/DS_Store"
tofile="${mountdir}/${dmg.name}/.DS_Store"
overwrite="true"/>
<!-- Add a symbolic link to the Applications directory -->
<symlink link="${mountdir}/${dmg.name}" resource="/Applications"/>
<!-- Detach the temporary image -->
<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
<arg value="detach"/>
<arg value="${mountdir}/${dmg.name}"/>
</exec>
<!-- Compress it to a new image -->
<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
<arg value="convert"/>
<arg value="${dmg.path.tmp}"/>
<arg value="-format"/>
<arg value="UDBZ"/>
<arg value="-o"/>
<arg value="${dmg.path}"/>
</exec>
<!-- Delete the temporary image -->
<delete file="${dmg.path.tmp}" quiet="yes" failonerror="false"/>
</target>
<target name="archivo.exe" depends="artifact.archivo">
<property name="inno.dir" value="${artifact.output.archivo}/InnoSetup"/>
<delete dir="${inno.dir}" failonerror="false"/>
<mkdir dir="${inno.dir}"/>
<copy todir="${inno.dir}">
<fileset dir="${artifact.temp.output.Archivo}" includes="*.jar"/>
</copy>
<!-- Include our platform-specific tools -->
<copy todir="${inno.dir}">
<fileset dir="${basedir}/package/win32/tools"/>
<fileset dir="${basedir}/package/all/"/>
<file file="${basedir}/package/win32/archivo.ico"/>
</copy>
<exec executable="${signtool.bin}">
<arg value="sign"/>
<arg value="/f"/>
<arg value="${signtool.cert}"/>
<arg value="/t"/>
<arg value="http://timestamp.comodoca.com/authenticode"/>
<arg value="/p"/>
<arg value="${signtool.cert.pw}"/>
<arg value="${inno.dir}\ffmpeg.exe"/>
</exec>
<exec executable="${signtool.bin}">
<arg value="sign"/>
<arg value="/f"/>
<arg value="${signtool.cert}"/>
<arg value="/t"/>
<arg value="http://timestamp.comodoca.com/authenticode"/>
<arg value="/p"/>
<arg value="${signtool.cert.pw}"/>
<arg value="${inno.dir}\ffprobe.exe"/>
</exec>
<exec executable="${signtool.bin}">
<arg value="sign"/>
<arg value="/f"/>
<arg value="${signtool.cert}"/>
<arg value="/t"/>
<arg value="http://timestamp.comodoca.com/authenticode"/>
<arg value="/p"/>
<arg value="${signtool.cert.pw}"/>
<arg value="${inno.dir}\comskip.exe"/>
</exec>
<exec executable="${signtool.bin}">
<arg value="sign"/>
<arg value="/f"/>
<arg value="${signtool.cert}"/>
<arg value="/t"/>
<arg value="http://timestamp.comodoca.com/authenticode"/>
<arg value="/p"/>
<arg value="${signtool.cert.pw}"/>
<arg value="${inno.dir}\HandBrake-32.exe"/>
</exec>
<exec executable="${signtool.bin}">
<arg value="sign"/>
<arg value="/f"/>
<arg value="${signtool.cert}"/>
<arg value="/t"/>
<arg value="http://timestamp.comodoca.com/authenticode"/>
<arg value="/p"/>
<arg value="${signtool.cert.pw}"/>
<arg value="${inno.dir}\HandBrake-64.exe"/>
</exec>
<exec executable="${inno.compiler}">
<arg value='/O"${artifact.output.archivo}"'/>
<arg value='"/dSrcDir=${inno.dir}"'/>
<arg value='"/dMyAppName=${title}"'/>
<arg value='"/dMyAppVersion=${version}"'/>
<arg value="${basedir}/package/win32/installer.iss"/>
</exec>
<!-- Delete temporary files -->
<delete dir="${artifacts.temp.dir}"/>
</target>
<target name="archivo" depends="artifact.archivo">
<delete dir="artifact.output.archivo" failonerror="false"/>
<mkdir dir="${artifact.output.archivo}"/>
<copy todir="${artifact.output.archivo}">
<fileset dir="${artifact.temp.output.Archivo}" includes="*.jar"/>
</copy>
<!-- Delete temporary files -->
<delete dir="${artifacts.temp.dir}"/>
</target>
<target name="all" depends="build.modules, build.all.artifacts" description="build all"/>
</project>