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
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## 10buildxml.dpatch by Andreas Putzo <andreas@putzo.net>
##
## DP: Adjust build.xml file.
@DPATCH@
diff -urNad libmetadata-extractor-java-2.3.1~/build.xml libmetadata-extractor-java-2.3.1/build.xml
--- libmetadata-extractor-java-2.3.1~/build.xml 2007-11-12 20:52:12.000000000 +0000
+++ libmetadata-extractor-java-2.3.1/build.xml 2007-11-12 21:17:41.000000000 +0000
@@ -7,8 +7,8 @@
<property name="dist" location="Releases"/>
<property name="build" value="Build"/>
<property name="src" value="src"/>
- <property name="javadoc" value="javadoc"/>
- <property name="lib" value="Libraries"/>
+ <property name="javadoc" value="api"/>
+ <property name="lib" value="/usr/share/ant/lib"/>
<property name="verbose" value="true"/>
<property name="debug" value="off"/>
<property name="version" value="2.3.1"/>
@@ -28,7 +28,7 @@
verbose="${verbose}"/>
</target>
- <target name="dist-binaries" depends="clean, compile, test" description="generate binary distribution">
+ <target name="dist-binaries" depends="clean, compile, javadoc" description="generate binary distribution">
<jar destfile="${dist}/metadata-extractor-${version}.jar" update="false">
<manifest>
<attribute name="Main-Class" value="com.drew.imaging.jpeg.JpegMetadataReader"/>
|