|
5 | 5 |
|
6 | 6 | <target name="clean" description="Clean the build directories">
|
7 | 7 | <delete dir="bin" />
|
8 |
| - <delete file="library/video-android.jar" /> |
| 8 | + <delete file="library/video_android.jar" /> |
9 | 9 | </target>
|
10 | 10 |
|
11 | 11 | <target name="build" depends="sdk_chatter,compile" description="Build video library for Processing Android" >
|
12 |
| - <jar basedir="bin" destfile="library/video-android.jar" /> |
| 12 | + <jar basedir="bin" destfile="library/video_android.jar" /> |
13 | 13 | </target>
|
14 | 14 |
|
15 | 15 | <target name="sdk_chatter" unless="env.ANDROID_SDK">
|
|
36 | 36 | </target>
|
37 | 37 |
|
38 | 38 | <target name="dist" depends="build" description="Creates distribution package">
|
39 |
| - <mkdir dir="dist/tmp/video-android" /> |
| 39 | + <mkdir dir="dist/tmp/video_android" /> |
40 | 40 |
|
41 | 41 | <!-- copy library files (jar and gstreamer natives) -->
|
42 |
| - <copy todir="dist/tmp/video-android/library"> |
| 42 | + <copy todir="dist/tmp/video_android/library"> |
43 | 43 | <fileset dir="library" />
|
44 | 44 | </copy>
|
45 | 45 |
|
46 | 46 | <!-- copy examples -->
|
47 |
| - <copy todir="dist/tmp/video-android/examples"> |
| 47 | + <copy todir="dist/tmp/video_android/examples"> |
48 | 48 | <fileset dir="examples" />
|
49 | 49 | </copy>
|
50 | 50 |
|
51 | 51 | <!-- copy source -->
|
52 |
| - <copy todir="dist/tmp/video-android/src"> |
| 52 | + <copy todir="dist/tmp/video_android/src"> |
53 | 53 | <fileset dir="src" />
|
54 | 54 | </copy>
|
55 | 55 |
|
56 | 56 | <!-- copy properties -->
|
57 |
| - <copy file="library.properties" tofile="dist/tmp/video-android/library.properties" /> |
| 57 | + <copy file="library.properties" tofile="dist/tmp/video_android/library.properties" /> |
58 | 58 |
|
59 | 59 | <!-- create the java reference of the library -->
|
60 | 60 | <!--
|
61 |
| - <mkdir dir="dist/tmp/video-android/reference" /> |
| 61 | + <mkdir dir="dist/tmp/video_android/reference" /> |
62 | 62 | <javadoc bottom="Processing video library by The Processing Foundation. (c) 2011-14"
|
63 | 63 | classpath="../processing/core/library/core.jar;bin"
|
64 |
| - destdir="dist/tmp/video-android/reference" |
| 64 | + destdir="dist/tmp/video_android/reference" |
65 | 65 | verbose="false"
|
66 | 66 | stylesheetfile="resources/stylesheet.css"
|
67 | 67 | doctitle="Javadocs: Video library for Android"
|
|
76 | 76 | </javadoc> -->
|
77 | 77 |
|
78 | 78 | <!-- create zip package -->
|
79 |
| - <delete file="dist/video-android.zip"/> |
80 |
| - <zip destfile="dist/video-android.zip" |
| 79 | + <delete file="dist/video_android.zip"/> |
| 80 | + <zip destfile="dist/video_android.zip" |
81 | 81 | basedir="dist/tmp"
|
82 | 82 | excludes="**/.DS_Store"
|
83 |
| - /> |
| 83 | + /> |
84 | 84 |
|
85 | 85 | <!-- copy properties to use by download manager -->
|
86 | 86 | <copy file="library.properties" tofile="dist/video.txt" />
|
|
0 commit comments