blob: 0d1d5a6f5de6782e180b6fea91c9c2ef2561bcb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --parallel --with gnome --buildsystem=meson
override_dh_auto_configure:
dh_auto_configure -- \
--libexec=/usr/lib \
-Dunity-support=true \
-Dinstall-apport-hook=true
override_dh_gnome_clean:
dh_gnome_clean --no-control
|