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
|
#!/usr/bin/make -f
export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@
override_dh_auto_configure:
ln -svf /usr/share/javascript/jquery/jquery.min.js $(CURDIR)/src/Resource_Files/javascript/jquery-3.6.4.min.js
ln -svf /usr/share/javascript/jquery-scrollto/jquery.scrollTo.min.js $(CURDIR)/src/Resource_Files/javascript/jquery.scrollTo-2.1.2-min.js
dh_auto_configure -- \
-DUSE_SYSTEM_LIBS=1 \
-DDISABLE_UPDATE_CHECK=1 \
-DSYSTEM_LIBS_REQUIRED=1 \
-DINSTALL_BUNDLED_DICTS=0 \
-DINSTALL_HICOLOR_ICONS=1 \
execute_before_dh_install:
# these are all "documentation" that is useless for the user, or already available (i.e. d/copyright)
rm -v $(CURDIR)/debian/tmp/usr/share/sigil/plugin_launchers/python/sigil_bs4/COPYING.txt
rm -v $(CURDIR)/debian/tmp/usr/share/sigil/python3lib/unidecode/LICENSE
rm -v $(CURDIR)/debian/tmp/usr/share/sigil/python3lib/unidecode/README.rst
rm -v $(CURDIR)/debian/tmp/usr/share/sigil/plugin_launchers/python/sigil_bs4/AUTHORS.txt
rm -v $(CURDIR)/debian/tmp/usr/share/sigil/plugin_launchers/python/sigil_bs4/sigil_custom_changes_to_bs4-4.4.0.patch.txt
override_dh_python3:
dh_python3 --no-ext-rename
|