-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.xml
274 lines (201 loc) · 8.63 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
<project name="Create & Update a PhoneGap BlackBerry WebWorks Project or Plugin" default="help">
<!-- LOAD VERSION -->
<loadfile property="version" srcFile="VERSION">
<filterchain>
<striplinebreaks/>
</filterchain>
</loadfile>
<!-- LOAD PROPERTIES -->
<property name="template.project.dir" location="template/project" />
<property name="template.plugin.dir" location="template/plugin" />
<property name="build.dir" location="build" />
<property name="update.dir" value="lib/phonegap.${version}" />
<property name="jar.src" location="framework/ext/src" />
<property name="jar.path" value="ext" />
<property name="jar.basename" value="phonegap.${version}.jar" />
<property name="jar.file" value="${jar.path}/${jar.basename}" />
<property name="js.src" location="javascript" />
<property name="js.path" value="javascript" />
<property name="js.basename" value="phonegap.${version}.js" />
<property name="js.basename-min" value="phonegap.${version}.min.js" />
<property name="js.file" value="${js.path}/${js.basename}" />
<property name="js.file-min" value="${js.path}/${js.basename-min}" />
<property name="js.license" location="lib/license.js" />
<!-- BUILD JAVASCRIPT -->
<target name="build-javascript">
<mkdir dir="${build.dir}/${js.path}" />
<!-- uncompressed -->
<concat destfile="${build.dir}/${js.file}" append="false">
<fileset dir="${js.src}">
<include name="*.js" />
</fileset>
</concat>
<!-- compressed -->
<compress-js input-file="${build.dir}/${js.file}"
output-file="${build.dir}/${js.file-min}" />
</target>
<!-- BUILD WIDGET EXTENSION -->
<target name="build-extension">
<mkdir dir="${build.dir}/${jar.path}" />
<zip destfile="${build.dir}/${jar.file}">
<fileset dir="${jar.src}" includes="library.xml" />
<fileset dir="${jar.src}" includes="**/*.java" />
</zip>
</target>
<!-- CREATE A PROJECT -->
<target name="create" depends="clean, build-javascript, build-extension">
<fail unless="project.path" message="You must give a project PATH. Use the argument -Dproject.path="C:\dev\my_project"" />
<available file="${project.path}" property="project.exists" />
<fail if="project.exists" message="The project path must be an empty directory." />
<!-- create project using template directory -->
<mkdir dir="${project.path}" />
<copy todir="${project.path}">
<fileset dir="${template.project.dir}" />
</copy>
<!-- update project files to reference phonegap.x.x.x.js -->
<replaceregexp match="phonegap\.js" replace="${js.basename-min}" byline="true">
<fileset file="${project.path}/www/index.html" />
<fileset file="${project.path}/build.xml" />
</replaceregexp>
<!-- copy phonegap.js -->
<copy todir="${project.path}/www/javascript">
<fileset dir="${build.dir}/${js.path}" />
</copy>
<!-- copy ext/ -->
<copy todir="${project.path}/www/ext">
<fileset dir="${build.dir}/${jar.path}" />
</copy>
<!-- save release -->
<mkdir dir="${project.path}/${update.dir}" />
<copy todir="${project.path}/${update.dir}">
<fileset dir="${build.dir}" />
</copy>
<echo>
Project Creation Complete!
==========================
Getting Started:
----------------
cd ${project.path}
ant help
</echo>
</target>
<!-- UPDATE A PROJECT -->
<target name="update" depends="clean, build-javascript, build-extension">
<fail unless="project.path" message="You must give a project PATH. Use the argument -Dproject.path="C:\dev\my_project"" />
<available file="${project.path}" property="project.exists" />
<fail unless="project.exists" message="The project path cannot be empty." />
<!-- save release -->
<mkdir dir="${project.path}/${update.dir}" />
<copy todir="${project.path}/${update.dir}">
<fileset dir="${build.dir}" />
</copy>
<echo>
Update complete!
================
PhoneGap ${version} has been created.
Update does not alter your project files.
See below for instructions to install PhoneGap ${version}.
Where:
------
${project.path}/${update.dir}
Install:
--------
1. Install the Java Extension:
- delete /www/${jar.path}/phonegap.jar
- copy /${update.dir}/${jar.file}
to /www/${jar.file}
2. Install the JavaScript library:
- delete /www/${js.path}/phonegap.js
- copy /${update.dir}/${js.file}
to /www/${js.path}/phonegap.js
3. Update JavaScript references:
- <script type="text/javascript" src="${js.file}"></script>
</echo>
</target>
<!-- CREATE A PLUGIN -->
<target name="create-plugin" depends="">
<!-- validate arguments -->
<fail unless="plugin.path" message="You must give a plugin PATH. Use the argument -Dplugin.path="C:\dev\my_plugin"" />
<!-- destination must be empty -->
<available file="${plugin.path}" property="plugin.exists" />
<fail if="plugin.exists" message="The plugin path must be an empty directory." />
<!-- copy plugin directory -->
<mkdir dir="${plugin.path}" />
<copy todir="${plugin.path}">
<fileset dir="${template.plugin.dir}" />
</copy>
<echo>
Plugin Creation Complete!
=========================
Getting Started:
----------------
cd ${plugin.path}
ant help
</echo>
</target>
<!-- UPDATE A PLUGIN -->
<target name="update-plugin" depends="">
<fail unless="plugin.path" message="You must give a plugin PATH. Use the argument -Dplugin.path="C:\dev\my_plugin"" />
<available file="${plugin.path}" property="plugin.exists" />
<fail unless="plugin.exists" message="The plugin path cannot be empty." />
<!-- build.xml -->
<copy todir="${plugin.path}" file="${template.plugin.dir}/build.xml" />
<echo message="Updated build.xml" />
</target>
<!-- CLEAN -->
<target name="clean">
<delete dir="${build.dir}" />
</target>
<!-- HELP -->
<target name="help">
<echo>
NAME
${ant.project.name}
SYNOPSIS
ant COMMAND [-D<argument>=<value>]...
DESCRIPTION
This tool allows you to create and update PhoneGap-BlackBerry-Widget projects.
You will want to run update after you have updated the framework source.
In other words, when you <git pull origin master>.
COMMANDS
help ............ Show this help menu.
ant, ant help
create .......... Create a new project
ant create PATH
ant create -Dproject.path="C:\dev\my_project"
update .......... Update an existing project
ant update PATH
ant update -Dproject.path="C:\dev\my_project"
create-plugin ... Create a new plugin
ant create-plugin PATH
ant create-plugin -Dplugin.path="C:\dev\my_plugin"
update-plugin ... Update a plugin's ANT script
ant update-plugin PATH
ant update-plugin -Dplugin.path="C:\dev\my_plugin"
</echo>
</target>
<!-- MACRO: COMPRESS-JS -->
<macrodef name="compress-js">
<attribute name="input-file" />
<attribute name="output-file" />
<sequential>
<property name="output-file.tmp" value="@{output-file}.tmp" />
<!-- compress -->
<java jar="./lib/yuicompressor/yuicompressor-2.4.2.jar"
fork="true"
failonerror="true">
<arg value="--nomunge" />
<arg value="-o"/>
<arg value="${output-file.tmp}" />
<arg value="@{input-file}" />
</java>
<!-- add license to minified file -->
<concat destfile="@{output-file}" append="false">
<fileset file="${js.license}" />
<fileset file="${output-file.tmp}" />
</concat>
<!-- cleanup -->
<delete file="${output-file.tmp}" />
</sequential>
</macrodef>
</project>