upgpkg. cantata-qt6-3.4.0-1: new upstram release

This commit is contained in:
Christian Schendel 2025-12-03 12:35:03 +00:00
parent 62a52dca7e
commit 04db7e6a0b
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
2 changed files with 22 additions and 16 deletions

View file

@ -1,7 +1,7 @@
pkgbase = cantata-qt6
pkgdesc = Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork
pkgver = 3.3.1
pkgrel = 4
pkgver = 3.4.0
pkgrel = 1
url = https://github.com/nullobsi/cantata
arch = x86_64
arch = i686
@ -18,6 +18,8 @@ pkgbase = cantata-qt6
depends = gcc-libs
depends = glibc
depends = hicolor-icon-theme
depends = karchive
depends = kitemviews
depends = libcddb
depends = libcdio-paranoia
depends = libebur128
@ -36,8 +38,8 @@ pkgbase = cantata-qt6
depends = zlib
optdepends = mpd: Playback
provides = cantata
source = cantata-3.3.1::git+https://github.com/nullobsi/cantata.git#tag=v3.3.1?signed
source = cantata-3.4.0::git+https://github.com/nullobsi/cantata.git#tag=v3.4.0?signed
validpgpkeys = EAAC1F701A83BED288D064DC933A1F44222C2634
sha256sums = c282fd13610e6521696a9caaa5772952b16a9ff2a64192fdc379d9074ebdb96c
sha256sums = 0d178d7bb46ee720abc4de57d80786809d6b74391624a4d5c8c71793953b0f9e
pkgname = cantata-qt6

View file

@ -5,8 +5,8 @@
pkgname=cantata-qt6
pkgdesc="Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork"
pkgver=3.3.1
pkgrel=6
pkgver=3.4.0
pkgrel=1
url="https://github.com/nullobsi/cantata"
arch=(x86_64 i686 aarch64 armv7h)
license=(
@ -25,6 +25,7 @@ depends=(
gcc-libs
glibc
hicolor-icon-theme
karchive
kitemviews
libcddb
libcdio-paranoia
@ -50,18 +51,21 @@ optdepends=(
provides=(cantata)
source=("${pkgname%-qt6}-$pkgver::git+$url.git#tag=v${pkgver}?signed")
sha256sums=('c282fd13610e6521696a9caaa5772952b16a9ff2a64192fdc379d9074ebdb96c')
sha256sums=('0d178d7bb46ee720abc4de57d80786809d6b74391624a4d5c8c71793953b0f9e')
validpgpkeys=('EAAC1F701A83BED288D064DC933A1F44222C2634') # Citlali del Rey <me@nullob.si>
build() {
cmake \
-B build \
-S "${pkgname%-qt6}-$pkgver" -Wno-dev \
-DBUNDLED_FONTAWESOME=ON \
-DQT_DIR=/usr/lib/cmake/Qt6 \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBEXECDIR=/usr/bin
CXXFLAGS+=" -Wno-error=unused-result -Wno-error=deprecated-declarations -Wno-unused-result"
local cmake_options=(
-B build
-S "${pkgname%-qt6}-$pkgver"
-D CMAKE_BUILD_TYPE=None
-D CMAKE_INSTALL_PREFIX=/usr
-D CMAKE_INSTALL_LIBEXECDIR=/usr/lib
-D BUNDLED_FONTAWESOME=ON
-D QT_DIR=/usr/lib/cmake/Qt6
-W no-dev
)
cmake "${cmake_options[@]}"
cmake --build build
}