File: build_xml.patch

package info (click to toggle)
fastqc 0.11.9%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,388 kB
  • sloc: java: 6,900; perl: 285; xml: 56; sh: 33; makefile: 7
file content (29 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download | duplicates (5)
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
Author: Andreas Tille <tille@debian.org>
        Emmanuel Bourg <ebourg@apache.org>
Last-Update: Fri Dec 4 19:18:21 2015 +0100
Description: Use Debian packaged JARs

--- a/build.xml
+++ b/build.xml
@@ -11,9 +11,10 @@
     <property name="source" value="1.5"/>
     <path id="FastQC.classpath">
         <pathelement location="bin"/>
-        <pathelement location="jbzip2-0.9.jar"/>
-        <pathelement location="sam-1.103.jar"/>
-        <pathelement location="cisd-jhdf5.jar"/>
+        <pathelement location="/usr/share/java/jbzip2.jar"/>
+        <pathelement location="/usr/share/java/htsjdk.jar"/>
+        <pathelement location="/usr/share/java/sis-jhdf5.jar"/>
+        <pathelement location="/usr/share/java/commons-math3.jar"/>
     </path>
     <target name="init">
         <mkdir dir="bin"/>
@@ -34,6 +35,7 @@
         <echo message="${ant.project.name}: ${ant.file}"/>
         <javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}">
             <src path="."/>
+            <exclude name=".pc/**"/>
             <classpath refid="FastQC.classpath"/>
         </javac>
     </target>