-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
58 lines (57 loc) · 1.89 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
<?xml version="1.0"?>
<project name="teaTimer" default="createxpi">
<target name="createjar">
<zip destfile="chrome/teaTimer.jar" basedir="chrome" includes="
content/options.js
content/options.xul
content/quicktimer.js
content/quicktimer.xul
content/teaReadyDialog.xul
content/teaReadyDialog.js
content/teatimer.js
content/teatimer.xul
content/teaTimerCommon.js
content/teaTimerTeaDB.js
content/sound/end-egg-timer.wav
content/sound/end-fanfare.wav
content/sound/end-slurp.wav
content/sound/end-speech.wav
content/sound/start-cup.wav
content/sound/start-egg-timer.wav
content/sound/start-pouring.wav
skin/options.css
skin/style.css
skin/quicktimer.css
skin/icon-inactive.png
skin/icon-steeping.png
skin/icon32.png
skin/teaReadyDialog.css
skin/widgetAlert/reset.css
skin/widgetAlert/default/widget.html
skin/widgetAlert/default/widget.css
skin/widgetAlert/default/bg.png
locale/en-US/teatimer.dtd
locale/en-US/teatimer.properties
locale/de/teatimer.dtd
locale/de/teatimer.properties
locale/cs-CZ/teatimer.dtd
locale/cs-CZ/teatimer.properties
locale/fr-FR/teatimer.dtd
locale/fr-FR/teatimer.properties
locale/sv-SE/teatimer.dtd
locale/sv-SE/teatimer.properties
locale/zh-CN/teatimer.dtd
locale/zh-CN/teatimer.properties
locale/sr/teatimer.dtd
locale/sr/teatimer.properties
locale/tr-TR/teatimer.dtd
locale/tr-TR/teatimer.properties
" />
</target>
<target name="createxpi" depends="createjar">
<zip destfile="teaTimer.xpi">
<zipfileset dir="chrome/" includes="teaTimer.jar" prefix="chrome" />
<zipfileset dir="." includes="install.rdf chrome.manifest license.txt" />
</zip>
</target>
</project>