Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Use free pilon, sneak in symlink for dynamic lib
· e107f105
Andreas Tille
authored
Aug 03, 2018
e107f105
Mention work that is left to do
· 85df4688
Andreas Tille
authored
Aug 03, 2018
85df4688
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
85df4688
...
...
@@ -11,7 +11,7 @@ Build-Depends: debhelper (>= 11~),
bowtie2,
freebayes,
ncbi-blast+,
pilon
| pilon-non-free
,
pilon,
racon,
samtools,
spades,
...
...
debian/rules
View file @
85df4688
...
...
@@ -36,4 +36,8 @@ override_dh_auto_test:
override_dh_link:
dh_link
# symlink versioned shared lib to make it found
ln -s `basename $$(find debian -name "cpp_functions*.so")` `dirname $$(find debian -name "cpp_functions*.so")`/cpp_functions.so
# FIXME: actually the cpp_functions*.so libs for different Python3 versions are identical!
# This should be checked and normalised
for pyldir in `dirname $$(find debian -name "cpp_functions*.so") | sort` ; do \
ln -s `basename $$(find debian -name "cpp_functions*.so")` $${pyldir}/cpp_functions.so ; \
done