Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Inherit and use LDFLAGS and CPPFLAGS
· 2623e20a
Michael R. Crusoe
authored
Jan 18, 2019
2623e20a
Mark unicycler-data as Multi-Arch: foreign, as recommended by the Multiarch hinter.
· 04164425
Michael R. Crusoe
authored
Jan 18, 2019
04164425
Standards-Version: 4.3.0, no changes needed
· 6d5abf3d
Michael R. Crusoe
authored
Jan 18, 2019
6d5abf3d
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
6d5abf3d
unicycler (0.4.7+dfsg-3) UNRELEASED; urgency=medium
* Team upload.
* Inherit and use LDFLAGS and CPPFLAGS
* Mark unicycler-data as Multi-Arch: foreign, as recommended by the
Multiarch hinter.
* Standards-Version: 4.3.0, no changes needed
-- Michael R. Crusoe <michael.crusoe@gmail.com> Fri, 18 Jan 2019 02:34:45 -0800
unicycler (0.4.7+dfsg-2) unstable; urgency=medium
[ Andreas Tille ]
...
...
debian/control
View file @
6d5abf3d
...
...
@@ -17,7 +17,7 @@ Build-Depends: debhelper (>= 11~),
spades,
libseqan2-dev,
zlib1g-dev
Standards-Version: 4.
2.1
Standards-Version: 4.
3.0
Vcs-Browser: https://salsa.debian.org/med-team/unicycler
Vcs-Git: https://salsa.debian.org/med-team/unicycler.git
Homepage: https://github.com/rrwick/Unicycler
...
...
@@ -45,6 +45,7 @@ Description: hybrid assembly pipeline for bacterial genomes
Package: unicycler-data
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: hybrid assembly pipeline for bacterial genomes (data package)
Unicycler is an assembly pipeline for bacterial genomes. It can assemble
...
...
debian/patches/append_flags
0 → 100644
View file @
6d5abf3d
From: Michael R. Crusoe <michael.crusoe@gmail.com>
Subject: Inherit and use LDFLAGS and CPPFLAGS
--- unicycler.orig/Makefile
+++ unicycler/Makefile
@@ -66,7 +66,7 @@
# These flags are required for the build to work.
FLAGS = -std=c++14 -Iunicycler/include -fPIC
-LDFLAGS = -shared -lz
+LDFLAGS += -shared -lz
# Platform-specific stuff (for Seqan)
@@ -115,4 +115,4 @@
$(RM) $(TARGET)
%.o: %.cpp $(HEADERS)
- $(CXX) $(FLAGS) $(CXXFLAGS) -c -o $@ $<
+ $(CXX) $(CPPFLAGS) $(FLAGS) $(CXXFLAGS) -c -o $@ $<
debian/patches/series
View file @
6d5abf3d
spades.patch
# bowtie.patch
install_wo_extra_steps.patch
append_flags