File: rules

package info (click to toggle)
ivar 1.4.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,348 kB
  • sloc: cpp: 5,892; javascript: 922; sh: 120; makefile: 48
file content (23 lines) | stat: -rwxr-xr-x 632 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
#!/usr/bin/make -f
# DH_VERBOSE := 1
export LC_ALL=C.UTF-8
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

# Fix a shift against reference data on i386 causing autopkgtest regressions.
ifneq (,$(filter $(DEB_HOST_ARCH),i386))
export DEB_CXXFLAGS_MAINT_APPEND = -ffloat-store
endif

%:
	dh $@

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	dh_auto_test --no-parallel
endif

EXAMPLES = $(CURDIR)/debian/ivar/usr/share/doc/ivar/examples/data
execute_before_dh_fixperms:
	if [ -x $(EXAMPLES)/primer_pair_test/test_primer_pair.bed ] \
	; then chmod -v -x $(EXAMPLES)/primer_pair_test/test_primer_pair.bed \
	; fi