upgpkg. cantata-qt6-3.4.0-1: new upstram release
This commit is contained in:
parent
62a52dca7e
commit
04db7e6a0b
2 changed files with 22 additions and 16 deletions
10
.SRCINFO
10
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
||||||
pkgbase = cantata-qt6
|
pkgbase = cantata-qt6
|
||||||
pkgdesc = Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork
|
pkgdesc = Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork
|
||||||
pkgver = 3.3.1
|
pkgver = 3.4.0
|
||||||
pkgrel = 4
|
pkgrel = 1
|
||||||
url = https://github.com/nullobsi/cantata
|
url = https://github.com/nullobsi/cantata
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
arch = i686
|
arch = i686
|
||||||
|
|
@ -18,6 +18,8 @@ pkgbase = cantata-qt6
|
||||||
depends = gcc-libs
|
depends = gcc-libs
|
||||||
depends = glibc
|
depends = glibc
|
||||||
depends = hicolor-icon-theme
|
depends = hicolor-icon-theme
|
||||||
|
depends = karchive
|
||||||
|
depends = kitemviews
|
||||||
depends = libcddb
|
depends = libcddb
|
||||||
depends = libcdio-paranoia
|
depends = libcdio-paranoia
|
||||||
depends = libebur128
|
depends = libebur128
|
||||||
|
|
@ -36,8 +38,8 @@ pkgbase = cantata-qt6
|
||||||
depends = zlib
|
depends = zlib
|
||||||
optdepends = mpd: Playback
|
optdepends = mpd: Playback
|
||||||
provides = cantata
|
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
|
validpgpkeys = EAAC1F701A83BED288D064DC933A1F44222C2634
|
||||||
sha256sums = c282fd13610e6521696a9caaa5772952b16a9ff2a64192fdc379d9074ebdb96c
|
sha256sums = 0d178d7bb46ee720abc4de57d80786809d6b74391624a4d5c8c71793953b0f9e
|
||||||
|
|
||||||
pkgname = cantata-qt6
|
pkgname = cantata-qt6
|
||||||
|
|
|
||||||
28
PKGBUILD
28
PKGBUILD
|
|
@ -5,8 +5,8 @@
|
||||||
|
|
||||||
pkgname=cantata-qt6
|
pkgname=cantata-qt6
|
||||||
pkgdesc="Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork"
|
pkgdesc="Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork"
|
||||||
pkgver=3.3.1
|
pkgver=3.4.0
|
||||||
pkgrel=6
|
pkgrel=1
|
||||||
url="https://github.com/nullobsi/cantata"
|
url="https://github.com/nullobsi/cantata"
|
||||||
arch=(x86_64 i686 aarch64 armv7h)
|
arch=(x86_64 i686 aarch64 armv7h)
|
||||||
license=(
|
license=(
|
||||||
|
|
@ -25,6 +25,7 @@ depends=(
|
||||||
gcc-libs
|
gcc-libs
|
||||||
glibc
|
glibc
|
||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
|
karchive
|
||||||
kitemviews
|
kitemviews
|
||||||
libcddb
|
libcddb
|
||||||
libcdio-paranoia
|
libcdio-paranoia
|
||||||
|
|
@ -50,18 +51,21 @@ optdepends=(
|
||||||
provides=(cantata)
|
provides=(cantata)
|
||||||
|
|
||||||
source=("${pkgname%-qt6}-$pkgver::git+$url.git#tag=v${pkgver}?signed")
|
source=("${pkgname%-qt6}-$pkgver::git+$url.git#tag=v${pkgver}?signed")
|
||||||
sha256sums=('c282fd13610e6521696a9caaa5772952b16a9ff2a64192fdc379d9074ebdb96c')
|
sha256sums=('0d178d7bb46ee720abc4de57d80786809d6b74391624a4d5c8c71793953b0f9e')
|
||||||
validpgpkeys=('EAAC1F701A83BED288D064DC933A1F44222C2634') # Citlali del Rey <me@nullob.si>
|
validpgpkeys=('EAAC1F701A83BED288D064DC933A1F44222C2634') # Citlali del Rey <me@nullob.si>
|
||||||
build() {
|
build() {
|
||||||
cmake \
|
CXXFLAGS+=" -Wno-error=unused-result -Wno-error=deprecated-declarations -Wno-unused-result"
|
||||||
-B build \
|
local cmake_options=(
|
||||||
-S "${pkgname%-qt6}-$pkgver" -Wno-dev \
|
-B build
|
||||||
-DBUNDLED_FONTAWESOME=ON \
|
-S "${pkgname%-qt6}-$pkgver"
|
||||||
-DQT_DIR=/usr/lib/cmake/Qt6 \
|
-D CMAKE_BUILD_TYPE=None
|
||||||
-DCMAKE_BUILD_TYPE=None \
|
-D CMAKE_INSTALL_PREFIX=/usr
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
-D CMAKE_INSTALL_LIBEXECDIR=/usr/lib
|
||||||
-DCMAKE_INSTALL_LIBEXECDIR=/usr/bin
|
-D BUNDLED_FONTAWESOME=ON
|
||||||
|
-D QT_DIR=/usr/lib/cmake/Qt6
|
||||||
|
-W no-dev
|
||||||
|
)
|
||||||
|
cmake "${cmake_options[@]}"
|
||||||
cmake --build build
|
cmake --build build
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue