forked from davidzof/wattzap-ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-osx.xml
98 lines (85 loc) · 3.47 KB
/
build-osx.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
<project name="wattzap" default="mac" basedir=".">
<description>
Wattzap Ant OSX Build File
</description>
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="dist-mac/bin"/>
<property name="dist" location="dist-mac"/>
<!-- changed to likely location of Java 1.6 on OSX -->
<property name="javadir" location="/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home"/>
<path id="master-classpath">
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
<fileset dir="lib/java1.6libs">
<include name="*.jar"/>
</fileset>
</path>
<property name="classpath" refid="master-classpath"/>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init" description="compile the source " >
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}" debug="true" debuglevel="lines,vars,source" fork="yes" executable="${javadir}/bin/javac">
<classpath refid="master-classpath"/>
</javac>
</target>
<target name="dist" depends="compile" description="generate the distribution" >
<!-- Create the distribution directory -->
<mkdir dir="${dist}"/>
<!-- Copy libs -->
<copy todir="${dist}/wattzap/lib">
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
</copy>
<!-- Build WattzAp Jar -->
<jar destfile="wattzap.jar">
<fileset dir="${build}">
<exclude name="**/*Test.class" />
<exclude name="org/**/*.class" />
</fileset>
</jar>
<!-- Update jsr80 jar -->
<zip destfile="tmp.jar" >
<zipfileset src="lib/java1.6libs/jformica-jsr80-1.6.jar" excludes="org/cowboycoders/ant/interfaces/**/*.class" />
<zipfileset dir="${build}" includes="org/cowboycoders/ant/interfaces/**/*.class" />
</zip>
<move file="tmp.jar" tofile="${dist}/wattzap/lib/jformica_jsr80.jar"/>
<!-- Update usb4java jar -->
<zip destfile="tmp.jar" >
<zipfileset src="lib/usb4java-javax-1.2.0.jar" excludes="org/usb4java/javax/AbstractIrp*.class" />
<zipfileset dir="${build}" includes="org/usb4java/javax/AbstractIrp*.class" />
</zip>
<move file="tmp.jar" tofile="${dist}/wattzap/lib/usb4java-javax-1.2.0.jar"/>
</target>
<target name="clean"
description="clean up" >
<!-- Delete the ${build} and ${dist} directory trees -->
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
<target name="mac" description="make OSX release" depends="dist">
<copy todir="${dist}/wattzap/lib/org">
<fileset dir="lib/org"/>
</copy>
<copy todir="${dist}/wattzap/properties">
<fileset dir="properties"/>
</copy>
<copy todir="${dist}/wattzap/icons">
<fileset dir="icons"/>
</copy>
<copy file="lib/java1.6libs/jformica-core1.6.jar" tofile="${dist}/wattzap/lib/jformica_core.jar"/>
<copy file="lib/java1.6libs/track-parser.jar" tofile="${dist}/wattzap/lib/track-parser.jar"/>
<copy file="runmac.sh" tofile="${dist}/wattzap/wattzap.sh"/>
<chmod file="${dist}/wattzap/wattzap.sh" perm="755"/>
<copy file="wattzap.jar" todir="${dist}/wattzap/lib/"/>
<tar destfile="${dist}/wattzap.tar" basedir="${dist}/wattzap"/>
<gzip destfile="${dist}/wattzap-mac.tgz" src="${dist}/wattzap.tar"/>
</target>
</project>