blob: 5b0f19159168af8a502550cb6304f506a94501c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Merged with official ABS phonon PKGBUILD by João, 2021/05/01 (all respective contributors apply herein)
# Maintainer: João Figueiredo & chaotic-aur <islandc0der@chaotic.cx>
pkgname=phonon-qt6-git
pkgdesc="The multimedia framework by KDE"
pkgver=4.12.0_r3982.g0bb5869c
pkgrel=1
arch=($CARCH)
url='https://community.kde.org/Phonon'
license=(LGPL)
depends=(gcc-libs glibc libpulse qt6-base qt6-tools qt5-base qt5-tools)
optdepends=('pulseaudio: PulseAudio support' 'qt6-tools: Designer plugin')
makedepends=(git extra-cmake-modules qt6-tools qt6-5compat)
conflicts=(${pkgname%-git})
provides=(${pkgname%-git})
replaces=(phonon-git)
source=("git+https://github.com/KDE/${pkgname%%-*}.git")
sha256sums=('SKIP')
pkgver() {
cd ${pkgname%%-*}
_ver="$(grep -m1 'project(Phonon VERSION' CMakeLists.txt | cut -d '"' -f2 | tr - .)"
echo "${_ver}_r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)"
}
build() {
cmake -B build -S ${pkgname%%-*} \
-DQT_MAJOR_VERSION=6 \
-DBUILD_TESTING=OFF
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|