blob: b55456b8025032965eb25430b4cf9ec6d56ab8dd (
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
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: Eric Engestrom <aur@engestrom.ch>
# Contributor: Yevhenii Kolesnikov <sigexp.acc at gmail dot com>
pkgname=lib32-gfxreconstruct
pkgver=1.4.304.0
pkgrel=1
pkgdesc="Graphics API Capture and Replay Tools for Reconstructing Graphics Application Behavior"
arch=(x86_64)
url="https://github.com/LunarG/gfxreconstruct"
license=(MIT)
depends=(gfxreconstruct lib32-libx11 lib32-libxcb lib32-wayland lib32-libxrandr lib32-zlib lib32-lz4 lib32-zstd lib32-glibc lib32-gcc-libs)
makedepends=(cmake git ninja xcb-util-keysyms)
source=("git+https://github.com/LunarG/gfxreconstruct.git#tag=vulkan-sdk-$pkgver"
"git+https://github.com/KhronosGroup/Vulkan-Headers.git"
"git+https://github.com/KhronosGroup/SPIRV-Headers.git"
"git+https://github.com/KhronosGroup/SPIRV-Reflect.git")
sha256sums=('70957e18eb75412fee0f55557db6947a7b39f0d0b6ec780d19fe734184542ded'
'SKIP'
'SKIP'
'SKIP')
prepare() {
cd gfxreconstruct
git submodule init
git config submodule.external/Vulkan-Headers.url "$srcdir/Vulkan-Headers"
git config submodule.external/SPIRV-Headers.url "$srcdir/SPIRV-Headers"
git config submodule.external/SPIRV-Reflect.url "$srcdir/SPIRV-Reflect"
git -c protocol.file.allow=always submodule update
}
build() {
CFLAGS="$CFLAGS -m32" \
CXXFLAGS="$CXXFLAGS -m32" \
LDFLAGS="$LDFLAGS -m32" \
PKG_CONFIG_PATH=/usr/lib32/pkgconfig \
cmake -B build -S "gfxreconstruct" -Wno-dev \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
}
package() {
install -Dm755 build/layer/libVkLayer_gfxreconstruct.so \
"$pkgdir"/usr/lib32/libVkLayer_gfxreconstruct.so
install -D gfxreconstruct/LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|