File: rules

package info (click to toggle)
victoriametrics 1.112.0%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,452 kB
  • sloc: makefile: 1,751; sh: 1,295; lex: 190; python: 28; perl: 17; javascript: 3
file content (22 lines) | stat: -rwxr-xr-x 478 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
#!/usr/bin/make -f

include /usr/share/dpkg/architecture.mk

export DH_GOLANG_EXCLUDES := \
	apptest/ \
	# EOL

export DH_GOLANG_INSTALL_EXTRA := \
	app/vmalert/templates/templates/ \
	app/vmselect/graphite/functions.json \
	lib/httpserver/favicon.ico \
	# EOL

%:
	dh $@ --builddirectory=_build --buildsystem=golang

ifeq (,$(filter $(DEB_HOST_ARCH),amd64 i386 armel))
override_dh_auto_test:
	# Ignore errors due to floating point comparisons w/o epsilon.
	-dh_auto_test
endif