forked from aloshbennett/shortly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
22 lines (22 loc) · 803 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<project name="shortly" default="dist" basedir=".">
<property name="app" value="agbshorturl"/>
<target name="dist">
<mkdir dir="dist"/>
<delete dir="dist/temp"/>
<mkdir dir="dist/temp/chrome"/>
<mkdir dir="dist/temp/defaults"/>
<zip destfile="dist/temp/chrome/${app}.jar">
<fileset dir="chrome/${app}/"/>
</zip>
<copy file="chrome.manifest" todir="dist/temp"/>
<copy file="install.rdf" todir="dist/temp" />
<copy file="gpl.txt" todir="dist/temp"/>
<copy todir="dist/temp/defaults">
<fileset dir="defaults"/>
</copy>
<zip destfile="dist/${ant.project.name}.xpi">
<fileset dir="dist/temp"/>
</zip>
<delete dir="dist/temp"/>
</target>
</project>