f4d784b5a7
related to https://github.com/i3/i3/issues/4086
26 lines
533 B
Makefile
Executable File
26 lines
533 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# vi: ts=8 sw=8 noet
|
|
|
|
export V:=1
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs RELEASE-NOTES-*
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=i3-wm-dbg
|
|
|
|
override_dh_auto_test:
|
|
# TODO: enable tests
|
|
|
|
override_dh_auto_configure:
|
|
# Set -Ddocdir; the default is /usr/share/doc/i3
|
|
dh_auto_configure -- -Ddocdir=/usr/share/doc/i3-wm -Dmans=true
|
|
|
|
override_dh_builddeb:
|
|
# bintray does not support xz currently.
|
|
dh_builddeb -- -Zgzip
|
|
|
|
%:
|
|
dh $@ --buildsystem=meson
|