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/gnome-pkg-tools/1/rules/gnome-get-source.mk
export LC_ALL=C.UTF-8
unexport LANGUAGE LANG LC_ALL LC_CTYPE LC_COLLATE LC_TIME LC_NUMERIC LC_MESSAGES
built_binaries := $(shell dh_listpackages)
%:
dh $@ --buildsystem=meson
override_dh_auto_configure:
dh_auto_configure \
-- \
-Ddevelopment_tests=false \
$(NULL)
override_dh_auto_build:
dh_auto_build
ifneq ($(filter gi-docgen-doc,$(built_binaries)),)
python3 -m sphinx -b html docs debian/html
endif
override_dh_gnome:
dh_gnome --no-gnome-versions
|