File: rules

package info (click to toggle)
bubblewrap 0.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 776 kB
  • sloc: ansic: 4,541; sh: 1,005; xml: 636; python: 572; perl: 100; makefile: 13
file content (27 lines) | stat: -rwxr-xr-x 641 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
26
27
#!/usr/bin/make -f
# -*- makefile -*-

export DEB_BUILD_MAINT_OPTIONS = hardening=+pie,+bindnow

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

PKGDIR=$(CURDIR)/debian/bubblewrap

%:
	dh $@ --buildsystem=meson+ninja --without=autoreconf

override_dh_auto_configure:
	dh_auto_configure \
		-- \
		-Dzsh_completion_dir=/usr/share/zsh/vendor-completions \
		${NULL}
.PHONY: override_dh_auto_configure

override_dh_auto_test:
	# Remove LD_PRELOAD so we don't run with faketime. It uses
	# sem_open(), but bubblewrap runs in an environment where that
	# can't work.
	env -u LD_PRELOAD dh_auto_test

.PHONY: override_dh_auto_test