mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-15 21:52:11 +01:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
# Contributor: Simon Zeni <simon@bl4ckb0ne.ca>
|
|
# Maintainer: Simon Zeni <simon@bl4ckb0ne.ca>
|
|
pkgname=renderdoc
|
|
pkgver=1.16
|
|
pkgrel=0
|
|
pkgdesc="Stand-alone graphics debugging tool for Vulkan and OpenGL"
|
|
url="https://renderdoc.org/"
|
|
arch="all !s390x !ppc64le"
|
|
license="MIT"
|
|
makedepends="cmake libx11-dev libxcb-dev xcb-util-keysyms-dev python3-dev
|
|
qt5-qtbase-dev qt5-qtsvg-dev qtchooser libexecinfo-dev wayland-dev
|
|
bison flex automake autoconf qt5-qtx11extras-dev"
|
|
options="!check" # no tests
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/baldurk/renderdoc/archive/refs/tags/v$pkgver.tar.gz
|
|
musl-fix.patch
|
|
"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
cmake -B build -H. \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DCMAKE_INSTALL_PREFIX="/usr" \
|
|
-DVULKAN_LAYER_FOLDER="/usr/share/vulkan/implicit_layer.d" \
|
|
-DENABLE_WAYLAND=ON
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
05338b9a7ebc159d94f6164449fc8fe3f659119552fb665b71a32a9aec2b6b0b31705fd39178bb44a0e721a7dbc5425b6abf4822471ae5802f734031003443ad renderdoc-1.16.tar.gz
|
|
99828b704eff63d5a71143e867bbceca11606bf7f0677a30115b1432fcde0c121f1090824ac2f727e143e474b8c5ca472ba05e377e658651d723f90fd9e99e0a musl-fix.patch
|
|
"
|