File: rules

package info (click to toggle)
primer3 2.3.7-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 12,860 kB
  • ctags: 10,887
  • sloc: ansic: 14,886; perl: 1,337; makefile: 220; sh: 39
file content (30 lines) | stat: -rwxr-xr-x 929 bytes parent folder | download
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
#!/usr/bin/make -f

# Does not build when using +all
# export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow

DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
sampledir:=$(CURDIR)/debian/$(DEBPKGNAME)-examples/usr/share/doc/$(DEBPKGNAME)/examples

%:
	dh $@ --sourcedirectory=src

override_dh_auto_build:
	dh_auto_build -- 'CPP=$$(CXX)'

override_dh_auto_test:
	dh_auto_test --sourcedirectory=test
	dh clean --sourcedirectory=test


override_dh_installexamples:
	dh_installexamples
	mkdir -p $(sampledir)/test;
	mkdir -p $(sampledir)/src;
	cp -aR ./test/* $(sampledir)/test;
	cp -aR ./src/humrep_and_simple.txt $(sampledir)/src;
	cp primer*.txt $(sampledir)/;
	chmod -x $(sampledir)/test/thal*;
	sed -i 's#/usr/local/bin/perl#/usr/bin/perl#' $(sampledir)/test/long_seq_tm_test.pl ;
	sed -i 's#/usr/local/bin/perl#/usr/bin/perl#' $(sampledir)/test/vgrep.pl ;