blob: b666821b9d01c47d8cdd15dbe3e2987176377e63 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Maintainer: zaps166 <spaz16@wp.pl>
pkgname=qmplay2-git
pkgver=24.06.16.r0.g935a51ec
pkgrel=1
pkgdesc='QMPlay2 is a video and audio player which can play most formats and codecs'
arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
url='https://github.com/zaps166/QMPlay2'
license=('LGPL')
depends=('qt6-base' 'qt6-svg' 'qt6-declarative' 'qt6-5compat' 'ffmpeg' 'libass' 'libgl' 'libva' 'libxv' 'alsa-lib' 'libcdio' 'taglib' 'libcddb' 'libpulse' 'libgme' 'libsidplayfp' 'pipewire' 'rubberband')
optdepends=('pulseaudio: PulseAudio support'
'game_music_emu-kode54-git: Better chiptune support (less bugs in sound, AUR package)')
conflicts=('qmplay2')
provides=('qmplay2')
makedepends=('ninja' 'clang' 'git' 'pkg-config' 'qt6-tools' 'cmake' 'fakeroot' 'shaderc')
options=(!lto)
source=(
'git+https://github.com/zaps166/QMPlay2.git'
'git+https://github.com/zaps166/QmVk.git'
'git+https://github.com/KhronosGroup/Vulkan-Headers.git'
)
sha256sums=(
'SKIP'
'SKIP'
'SKIP'
)
pkgver() {
cd QMPlay2
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
mkdir -p QMPlay2-build
cd QMPlay2
git submodule init
git config submodule.src/qmvk.url ../QmVk
git config submodule.src/qmplay2/vulkan/headers.url ../Vulkan-Headers
git -c protocol.file.allow=always submodule update
}
build() {
cd QMPlay2-build
cmake \
-G Ninja \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
../QMPlay2 \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF \
-DUSE_PCH=ON \
-DUSE_GLSLC=ON \
-DUSE_GIT_VERSION=ON
time ninja
}
package() {
cd $srcdir/QMPlay2-build
DESTDIR=$pkgdir ninja install
}
|