summaryrefslogtreecommitdiff
path: root/mediaelch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-04-06 09:14:31 -0400
committerB. Stack <bgstack15@gmail.com>2024-04-06 09:14:31 -0400
commit8f23e8b1abb8f99e3e926edb6f7321b61c544c17 (patch)
treed0259c84289d4eb3573bb248017e18fa5b49d09d /mediaelch
parentadd mediaelch (diff)
downloadstackrpms-8f23e8b1abb8f99e3e926edb6f7321b61c544c17.tar.gz
stackrpms-8f23e8b1abb8f99e3e926edb6f7321b61c544c17.tar.bz2
stackrpms-8f23e8b1abb8f99e3e926edb6f7321b61c544c17.zip
try qt6 stuff for obs
Diffstat (limited to 'mediaelch')
-rw-r--r--mediaelch/debian/control3
-rw-r--r--mediaelch/debian/mediaelch+stackrpms.dsc2
-rwxr-xr-xmediaelch/debian/rules13
3 files changed, 12 insertions, 6 deletions
diff --git a/mediaelch/debian/control b/mediaelch/debian/control
index 9e194ac..9d31e14 100644
--- a/mediaelch/debian/control
+++ b/mediaelch/debian/control
@@ -1,7 +1,8 @@
Source: mediaelch
Section: misc
Priority: optional
-Maintainer: Andre Meyering <info@andremeyering.de>
+Maintainer: B. Stack <bgstack15@gmail.com>
+XSBC-Original-Maintainer: Andre Meyering <info@andremeyering.de>
Standards-Version: 4.6.2
Build-Depends: debhelper-compat (= 13),
cmake,
diff --git a/mediaelch/debian/mediaelch+stackrpms.dsc b/mediaelch/debian/mediaelch+stackrpms.dsc
index 0e7326f..4de2037 100644
--- a/mediaelch/debian/mediaelch+stackrpms.dsc
+++ b/mediaelch/debian/mediaelch+stackrpms.dsc
@@ -9,7 +9,7 @@ Homepage: http://www.mediaelch.de
Standards-Version: 4.1.4
Vcs-Browser: https://github.com/Komet/MediaElch/
Vcs-Git: https://github.com/Komet/MediaElch.git
-Build-Depends: debhelper (>= 8.0.0), qtchooser, qtbase5-dev, qtbase5-dev-tools, qt5-qmake, qtmultimedia5-dev, cdbs, libmediainfo0 | libmediainfo0v5, libmediainfo-dev, zlib1g-dev, libzen-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev, libpulse-dev, libqt5opengl5-dev, libqt5svg5-dev, qttools5-dev, qttools5-dev-tools
+Build-Depends: debhelper (>= 8.0.0), qtchooser, cdbs, libmediainfo0 | libmediainfo0v5, libmediainfo-dev, zlib1g-dev, libzen-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev, libpulse-dev, cmake, libqt6opengl6-dev, libquazip1-qt6-dev, libxkbcommon-dev, qt6-base-dev, qt6-multimedia-dev, qt6-svg-dev, qt6-tools-dev
Package-List:
mediaelch deb misc extra arch=any
Files:
diff --git a/mediaelch/debian/rules b/mediaelch/debian/rules
index cb7f216..6dc3662 100755
--- a/mediaelch/debian/rules
+++ b/mediaelch/debian/rules
@@ -1,9 +1,14 @@
#!/usr/bin/make -f
-QT_SELECT=qt5
-export QT_SELECT
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
+export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/qmake.mk
+export QT_SELECT = 6
+%:
+ dh $@
+override_dh_auto_configure:
+ dh_auto_configure -- \
+ -DUSE_EXTERN_QUAZIP:BOOL=ON
bgstack15