From 4787a2901cb195dec0b977b85ffd970042c9d05c Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Sat, 10 Jan 2026 18:29:28 -0700 Subject: [PATCH] Modify dh_auto_configure options and cleanup rules Removed git checkout check and updated configuration options. --- debian/rules | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/debian/rules b/debian/rules index 6e47a493..51fce4d1 100755 --- a/debian/rules +++ b/debian/rules @@ -1,23 +1,14 @@ #!/usr/bin/make -f export DH_VERBOSE=1 -git_checkout = $(shell if [ -d .git ]; then echo true ; else echo false ; fi) - %: dh $@ --buildsystem=meson -override_dh_auto_configure: patch - dh_auto_configure -- -Dinstall-plugin-metainfo=true -Dwith-lua=lua53 +override_dh_auto_configure: + dh_auto_configure -- \ + -Dinstall-plugin-metainfo=false \ + -Dwith-lua=lua53 override_dh_installchangelogs: dh_installchangelogs debian/changelog.txt - - -udoc: -ifeq ($(git_checkout),true) - wget https://github.com/Zoitechat/documentation/raw/master/changelog.rst -O debian/changelog.txt - wget https://github.com/Zoitechat/documentation/raw/master/plugins.rst -O debian/plugins.txt -else - $(error you are running this outside of a git checkout; this is not what the maintainer expects) -endif