File: rules

package info (click to toggle)
genomethreader 1.7.3%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 46,528 kB
  • sloc: ansic: 90,168; ruby: 1,769; makefile: 548; sh: 112; perl: 105
file content (56 lines) | stat: -rwxr-xr-x 1,418 bytes parent folder | download | duplicates (2)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/make -f

include /usr/share/dpkg/default.mk

DH_VERBOSE := 1
export LC_ALL=C.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.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-)

DARCH:=$(shell dpkg-architecture | fgrep DEB_TARGET_ARCH= | cut -f 2 -d'=')
BITS:=$(shell dpkg-architecture | fgrep DEB_TARGET_ARCH_BITS= | cut -f 2 -d'=')

ifeq ($(BITS),64)
  64BIT:=yes
else
  64BIT:=no
endif

ifeq ($(DARCH),i386)
  EXTRATESTOPT:=nofastdp=yes
endif

%:
	dh $@

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=$(64BIT)
	make licensemanager=no opt=yes 64bit=$(64BIT) train

override_dh_auto_install:
	mv bin/bssm debian/bssm
	mv bin/gthdata debian/gthdata
	dh_auto_install

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	make licensemanager=no 64bit=$(64BIT) $(EXTRATESTOPT) test
endif

override_dh_installman:
	mkdir -p $(CURDIR)/debian/man
	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