File: prepareForExternalLibBigWig.patch

package info (click to toggle)
pybigwig 0.3.23%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 352 kB
  • sloc: ansic: 2,122; python: 316; makefile: 9
file content (16 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- a/setup.py
+++ b/setup.py
@@ -6,11 +6,9 @@
 import glob
 import sys
 
-srcs = [x for x in 
-    glob.glob("libBigWig/*.c")]
-srcs.append("pyBigWig.c")
+srcs = ["pyBigWig.c"]
 
-libs=["m", "z"]
+libs=["BigWig", "m", "z"]
 
 # do not link to python on mac, see https://github.com/deeptools/pyBigWig/issues/58
 if 'dynamic_lookup' not in (sysconfig.get_config_var('LDSHARED') or ''):