Merge commit '4f73289602742a7d0ed7a54f50dfef9d538dccb5' into Thunder

This commit is contained in:
2025-11-10 15:32:49 +08:00
17 changed files with 757 additions and 93 deletions

View File

@@ -1,7 +1,27 @@
#!/usr/bin/make -f
%:
dh $@
# 声明兼容性级别
export DH_VERBOSE=1
%:
dh $@ --buildsystem=cmake
# 确保使用CMake进行配置
override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_INSTALL_PREFIX=/usr
# 确保使用CMake进行构建
override_dh_auto_build:
dh_auto_build
# 确保使用CMake进行安装
override_dh_auto_install:
dh_auto_install
# 确保使用CMake进行清理
override_dh_auto_clean:
dh_auto_clean
# 确保使用CMake进行依赖解析
override_dh_shlibdeps:
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info