blob: 527dba6fa8ccb35a7f612b5477f8f4d9d42e0617 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Maintainer: Martins Mozeiko <martins.mozeiko@gmail.com>
# Co-Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=('opencl-caps-viewer-x11' 'opencl-caps-viewer-wayland')
pkgbase=opencl-caps-viewer
pkgver=1.20
pkgrel=4
pkgdesc="OpenCL Hardware Capability Viewer"
arch=('x86_64')
url="https://opencl.gpuinfo.org/"
license=('GPL-2.0-or-later')
makedepends=('git' 'opencl-icd-loader' 'qt5-wayland' 'qt5-x11extras')
source=("git+https://github.com/SaschaWillems/OpenCLCapsViewer.git#tag=$pkgver"
'git+https://github.com/KhronosGroup/OpenCL-Headers.git')
sha256sums=('510e3f05f1ce2cda5fc4812f2693e15a672de393b984ad2df5ab8f29f74f2594'
'SKIP')
prepare() {
cd OpenCLCapsViewer
git submodule init
git config submodule.OpenCL-Headers.url "$srcdir/OpenCL-Headers"
git -c protocol.file.allow=always submodule update
# Correct binary install path
sed -i 's|target.path = /opt/$${TARGET}/bin|target.path = /usr/bin|g' OpenCLCapsViewer.pro
# Create build directories
mkdir -p build-x11 build-wayland
}
build() {
cd OpenCLCapsViewer
# X11
pushd build-x11
qmake-qt5 ../OpenCLCapsViewer.pro \
DEFINES+=X11 \
CONFIG+=release \
PREFIX=/usr
make
popd
# Wayland
pushd build-wayland
qmake-qt5 ../OpenCLCapsViewer.pro \
DEFINES+=WAYLAND \
CONFIG+=release \
PREFIX=/usr
make
popd
}
package_opencl-caps-viewer-x11() {
pkgdesc+=" (X11)"
depends=('opencl-icd-loader' 'qt5-x11extras')
provides=('opencl-caps-viewer')
conflicts=('opencl-caps-viewer')
cd OpenCLCapsViewer/build-x11
make INSTALL_ROOT="$pkgdir/" install
install -m644 ../Resources/icon.png \
"${pkgdir}"/usr/share/icons/hicolor/256x256/apps/openclCapsViewer.png
}
package_opencl-caps-viewer-wayland() {
pkgdesc+=" (Wayland)"
depends=('opencl-icd-loader' 'qt5-wayland')
provides=('opencl-caps-viewer')
conflicts=('opencl-caps-viewer')
cd OpenCLCapsViewer/build-wayland
make INSTALL_ROOT="$pkgdir/" install
install -m644 ../Resources/icon.png \
"${pkgdir}"/usr/share/icons/hicolor/256x256/apps/openclCapsViewer.png
}
|