File: rules

package info (click to toggle)
mda-lv2 1.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,272 kB
  • sloc: cpp: 93,031; python: 28,017; makefile: 17
file content (28 lines) | stat: -rwxr-xr-x 433 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
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

export DESTDIR=$(CURDIR)/debian/mda-lv2

WAF = python3 ./waf

%:
	dh $@

override_dh_auto_configure:
	$(WAF) configure --prefix=/usr

override_dh_auto_build:
	$(WAF)

override_dh_auto_install:
	$(WAF) install

override_dh_auto_clean:
	$(WAF) clean || true
	find -name "*.pyc" -delete
	rm -rf build .waf*
	dh_auto_clean

# No tests available
override_dh_auto_test: