diff options
author | Michael Prager | 2025-02-23 22:34:42 +0100 |
---|---|---|
committer | Michael Prager | 2025-02-23 22:50:33 +0100 |
commit | 652182b8d784872bbceab287e57ee862749ae4c1 (patch) | |
tree | f5c998aeef6f34e9a24e2c9109cf828d4e7ac365 | |
parent | 93c9b77a797b3301dd40ca917c4f37f5af8ae31c (diff) | |
download | aur-golden-cheetah-git.tar.gz |
switched from qt5 to qt6, solving wayland issues; removed no longer supported libkml
-rw-r--r-- | .SRCINFO | 30 | ||||
-rw-r--r-- | PKGBUILD | 32 |
2 files changed, 29 insertions, 33 deletions
@@ -1,6 +1,6 @@ pkgbase = golden-cheetah-git pkgdesc = Performance Software for Cyclists, Runners, Triathletes and Coaches - pkgver = v3.6.r203.fd1eed4ed + pkgver = v3.7.DEV2412.r49.559c8fd1d pkgrel = 1 url = https://www.goldencheetah.org/ arch = i686 @@ -10,27 +10,25 @@ pkgbase = golden-cheetah-git makedepends = flex makedepends = gcc makedepends = make - makedepends = qt5-tools + makedepends = qt6-tools makedepends = sip4 makedepends = pkgconf makedepends = git - depends = qt5-base - depends = qt5-svg - depends = qt5-location - depends = qt5-declarative - depends = qt5-webchannel - depends = qt5-webengine - depends = qt5-sensors - depends = qt5-serialport - depends = qt5-multimedia - depends = qt5-script - depends = qt5-connectivity - depends = qt5-charts + depends = qt6-base + depends = qt6-svg + depends = qt6-location + depends = qt6-declarative + depends = qt6-webchannel + depends = qt6-webengine + depends = qt6-sensors + depends = qt6-serialport + depends = qt6-multimedia + depends = qt6-connectivity + depends = qt6-charts depends = gsl optdepends = vlc: video playback in training mode optdepends = srmio: SRM powercontrol V downloads via serial optdepends = libftd2xx: Powertap downloads via USB - optdepends = libkml: export to Google Earth optdepends = libical: diary window and CALDAV support (external calendar integration) optdepends = libusb-compat: for using USB2 sticks in Train View optdepends = libsamplerate @@ -46,6 +44,6 @@ pkgbase = golden-cheetah-git source = gcconfig.pri sha256sums = SKIP sha256sums = 3ec79d7671a54ce34d6be3b5c2dbd051f423a3fc1529398337631d742765d7ad - sha256sums = 7409dc95720bc309a082ef72bf2dab6cf458a7eaed901c9ead14ffc8f6d0f013 + sha256sums = 5a9f8520c6fae9e1b66be54e755219a5a0f2ab90caee084fbe370195c0402a1e pkgname = golden-cheetah-git @@ -1,7 +1,7 @@ # Maintainer: Michael Prager <archlinuxaur@michaelprager.de> # Contributor: Ammann Max <maximilian.ammann@googlemail.com> pkgname=golden-cheetah-git -pkgver=v3.6.r203.fd1eed4ed +pkgver=v3.7.DEV2412.r49.559c8fd1d pkgrel=1 pkgdesc="Performance Software for Cyclists, Runners, Triathletes and Coaches" arch=('i686' 'x86_64') @@ -12,29 +12,27 @@ makedepends=( 'flex' 'gcc' 'make' - 'qt5-tools' + 'qt6-tools' 'sip4' 'pkgconf' 'git') depends=( - 'qt5-base' - 'qt5-svg' - 'qt5-location' - 'qt5-declarative' - 'qt5-webchannel' - 'qt5-webengine' - 'qt5-sensors' - 'qt5-serialport' - 'qt5-multimedia' - 'qt5-script' - 'qt5-connectivity' - 'qt5-charts' + 'qt6-base' + 'qt6-svg' + 'qt6-location' + 'qt6-declarative' + 'qt6-webchannel' + 'qt6-webengine' + 'qt6-sensors' + 'qt6-serialport' + 'qt6-multimedia' + 'qt6-connectivity' + 'qt6-charts' 'gsl') optdepends=( 'vlc: video playback in training mode' 'srmio: SRM powercontrol V downloads via serial' 'libftd2xx: Powertap downloads via USB' - 'libkml: export to Google Earth' 'libical: diary window and CALDAV support (external calendar integration)' 'libusb-compat: for using USB2 sticks in Train View' 'libsamplerate' @@ -48,7 +46,7 @@ source=('golden-cheetah::git+https://github.com/GoldenCheetah/GoldenCheetah.git' 'gcconfig.pri') sha256sums=('SKIP' '3ec79d7671a54ce34d6be3b5c2dbd051f423a3fc1529398337631d742765d7ad' - '7409dc95720bc309a082ef72bf2dab6cf458a7eaed901c9ead14ffc8f6d0f013') + '5a9f8520c6fae9e1b66be54e755219a5a0f2ab90caee084fbe370195c0402a1e') pkgver() { cd "${srcdir}/golden-cheetah" @@ -60,7 +58,7 @@ build() { cp qwt/qwtconfig.pri.in qwt/qwtconfig.pri cp "$srcdir/gcconfig.pri" src/gcconfig.pri lupdate-pro src/src.pro - qmake-qt5 -recursive QMAKE_CXXFLAGS_WARN_ON+="-Wno-deprecated-declarations -Wno-unused-value" QMAKE_CFLAGS_WARN_ON+="-Wno-deprecated-declarations -Wno-unused-value" + qmake6 -recursive QMAKE_CXXFLAGS_WARN_ON+="-Wno-deprecated-declarations -Wno-unused-value" QMAKE_CFLAGS_WARN_ON+="-Wno-deprecated-declarations -Wno-unused-value" make } |