Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
set Built-Using for Vmatch static lib
· 3d5f30f7
Sascha Steinbiss
authored
Jan 10, 2020
3d5f30f7
define LIBVMATCH_PKG_VERSION
· 60db8570
Sascha Steinbiss
authored
Jan 10, 2020
60db8570
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
60db8570
...
...
@@ -23,6 +23,7 @@ Package: genomethreader
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends}
Built-Using: vmatch (= ${libvmatch-dev:Version})
Description: software tool to compute gene structure predictions
GenomeThreader is a software tool to compute gene structure predictions.
The gene structure predictions are calculated using a similarity-based
...
...
debian/rules
View file @
60db8570
...
...
@@ -3,14 +3,16 @@
DH_VERBOSE := 1
export LC_ALL=C.UTF-8
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
export LIBVMATCH_PKG_VERSION=$(shell apt-cache policy libvmatch-dev | grep Installed | cut -f2 -d: | cut -c2-)
%:
dh $@
override_dh_clean:
override_dh_
auto_
clean:
dh_clean
rm -rf bin/bssm debian/bssm bin/gthdata debian/gthdata
rm -rf $(CURDIR)/debian/man
rm -f debian/*substvars
override_dh_auto_build:
make licensemanager=no opt=yes 64bit=yes
...
...
@@ -31,3 +33,7 @@ override_dh_installman:
asciidoctor -a docdate='' -b manpage $(CURDIR)/debian/man_src/*.adoc
cp $(CURDIR)/debian/man_src/*.? $(CURDIR)/debian/man
dh_installman --
override_dh_gencontrol:
echo "libvmatch-dev:Version=$(LIBVMATCH_PKG_VERSION)" >> debian/genomethreader.substvars
dh_gencontrol
\ No newline at end of file