summaryrefslogtreecommitdiffstats
path: root/lib/Debian/Debhelper/Buildsystem/qmake6.pm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 12:53:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 12:53:53 +0000
commit90169463f86997737ed5b9c0ea2b311cd3b056b7 (patch)
tree281a0f8d9850ea58cf2a3ddb8bf087fb52520925 /lib/Debian/Debhelper/Buildsystem/qmake6.pm
parentInitial commit. (diff)
downloaddebhelper-upstream/13.15.3.tar.xz
debhelper-upstream/13.15.3.zip
Adding upstream version 13.15.3.upstream/13.15.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/Debian/Debhelper/Buildsystem/qmake6.pm')
-rw-r--r--lib/Debian/Debhelper/Buildsystem/qmake6.pm19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/Debian/Debhelper/Buildsystem/qmake6.pm b/lib/Debian/Debhelper/Buildsystem/qmake6.pm
new file mode 100644
index 0000000..e2c3294
--- /dev/null
+++ b/lib/Debian/Debhelper/Buildsystem/qmake6.pm
@@ -0,0 +1,19 @@
+package Debian::Debhelper::Buildsystem::qmake6;
+
+use strict;
+use warnings;
+use parent qw(Debian::Debhelper::Buildsystem::qmake);
+use Debian::Debhelper::Dh_Lib qw(is_cross_compiling dpkg_architecture_value);
+
+sub DESCRIPTION {
+ "qmake for QT 6 (*.pro)";
+}
+
+sub _qmake {
+ if (is_cross_compiling()) {
+ return dpkg_architecture_value("DEB_HOST_GNU_TYPE") . '-qmake6';
+ }
+ return 'qmake6';
+}
+
+1