-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adaptation work based on Qt 6.8, modified relevant interfaces and configuration files.
- Loading branch information
Showing
5 changed files
with
70 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,15 @@ Maintainer: Deepin Packages Builder <[email protected]> | |
Build-Depends: | ||
debhelper (>= 9), | ||
pkg-config, | ||
qt5-qmake, | ||
qt6-base-dev, | ||
qt6-base-dev-tools, | ||
qt6-base-private-dev, | ||
libxcb-util0-dev, | ||
libdtkgui-dev, | ||
libdtkwidget-dev, | ||
qttools5-dev-tools, | ||
libqt5svg5-dev, | ||
libdtk6gui-dev, | ||
libdtk6widget-dev, | ||
qt6-tools-dev-tools, | ||
qt6-tools-dev, | ||
qt6-svg-dev, | ||
libxtst-dev | ||
Standards-Version: 3.9.8 | ||
Homepage: http://www.deepin.org | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,22 @@ | ||
#!/usr/bin/make -f | ||
|
||
export QT_SELECT=5 | ||
# 设置 Qt6 环境 | ||
export QT_SELECT=qt6 | ||
# 使用系统 PATH 中的 qmake6 | ||
export QMAKE=qmake6 | ||
|
||
include /usr/share/dpkg/default.mk | ||
|
||
# 指定使用 qmake 构建系统 | ||
export DH_OPTIONS := --buildsystem=qmake | ||
|
||
%: | ||
dh $@ | ||
dh $@ --buildsystem=qmake | ||
|
||
override_dh_auto_configure: | ||
$(QMAKE) \ | ||
VERSION=$(VERSION) \ | ||
PREFIX=/usr \ | ||
LIB_INSTALL_DIR=/usr/lib/$(DEB_HOST_MULTIARCH) \ | ||
VERSION_UPSTREAM=$(DEB_VERSION_UPSTREAM) \ | ||
DEFINES+="VERSION=$(DEB_VERSION_UPSTREAM)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters