File: rules

package info (click to toggle)
postgresql-plproxy 2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 520 kB
  • ctags: 546
  • sloc: ansic: 3,698; sql: 1,109; lex: 338; yacc: 171; makefile: 115; sh: 24
file content (25 lines) | stat: -rwxr-xr-x 562 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
#!/usr/bin/make -f

include /usr/share/postgresql-common/pgxs_debian_control.mk

override_dh_auto_build:
	+pg_buildext build build-%v
	mkdir -p results # create dir now so we can remove it when the regression tests were run as root

override_dh_auto_clean:
	+pg_buildext clean build-%v
	rm -rf regression.* results/*

override_dh_auto_test:

override_dh_auto_install:
	+pg_buildext install build-%v postgresql-%v-plproxy

override_dh_installchangelogs:
	dh_installchangelogs NEWS.md

override_dh_installdocs:
	dh_installdocs -a --all AUTHORS doc/*.md

%:
	dh $@