1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all reproducible=+fixfilepath
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
export CXXFLAGS_FOR_BUILD=$(CXXFLAGS)
export CPPFLAGS_FOR_BUILD=$(CPPFLAGS)
export LDFLAGS_FOR_BUILD=$(LDFLAGS)
%:
dh $@
override_dh_auto_clean:
dh_auto_clean
rm -f po-defs/fixpo po-defs/fixed/.intltool-merge-cache* po-defs/fixed/*.po
execute_after_dh_installdocs:
rm -rf debian/libqalculate-doc/usr/share/doc/libqalculate-dev/
|