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 29 30 31 32 33
|
#!/usr/bin/make -f
# Needed for glib-mkenums to work with UTF-8 input
export LC_ALL=C.UTF-8
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs
export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
%:
dh $@ --buildsystem=meson --without autoreconf
override_dh_auto_configure:
dh_auto_configure --builddir build-main -- -Dauto_features=enabled -Dgraphite2=enabled
dh_auto_configure --builddir build-udeb -- -Dauto_features=enabled -Dgraphite2=disabled -Dchafa=disabled
override_dh_auto_clean:
dh_auto_clean --builddir build-main
dh_auto_clean --builddir build-udeb
override_dh_auto_build:
dh_auto_build --builddir build-main
dh_auto_build --builddir build-udeb
override_dh_auto_test:
dh_auto_test --builddir build-main
dh_auto_test --builddir build-udeb
override_dh_auto_install:
dh_auto_install --builddir build-main
override_dh_makeshlibs:
dh_makeshlibs --add-udeb="libharfbuzz0-udeb"
|