summaryrefslogtreecommitdiffstats
path: root/lib/Debian/Debhelper/Buildsystem/qmake6.pm
diff options
context:
space:
mode:
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