a85db1dc7b
At the moment we have Contributor: lines on some packages (but not all of them), but often they don't represent the actual contributors to the package very well. E.g. when we added them retroactively to the device packages we only added the initial contributor (which isn't necessarily the person who made most of the work for a device...) The Git history is the most representative source for figuring out who contributed to a package, so there is no reason to duplicate that into the APKBUILD. [skip ci]: way too many packages
29 lines
1.1 KiB
Text
29 lines
1.1 KiB
Text
# Maintainer: Bhushan Shah <bshah@kde.org>
|
|
pkgname=apitrace
|
|
pkgver=9.0
|
|
pkgrel=0
|
|
pkgdesc="Tools for tracing OpenGL, Direct3D, and other graphics APIs"
|
|
arch="all"
|
|
url="http://apitrace.github.io/"
|
|
license="MIT"
|
|
depends_dev="mesa-dev zlib-dev libpng-dev libx11-dev linux-headers qt5-qtbase-dev"
|
|
makedepends="$depends_dev cmake python3"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/apitrace/apitrace/archive/$pkgver.tar.gz
|
|
0001-Support-libc-that-don-t-have-RTLD_DEEPBIND.patch"
|
|
subpackages="$pkgname-doc"
|
|
options="!check" # Tests fail under QEMU
|
|
|
|
build() {
|
|
cmake -B "$builddir"/build \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
make -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" make -C build install
|
|
}
|
|
|
|
sha512sums="4234bc2d14378b1bd9554752d83f8ce0703b4e08c3edc85769dc988a2b3a44b8e55d2f5856954658155a11d69802849bae6350ed5031a5916c7ac7bc7287918c apitrace-9.0.tar.gz
|
|
1018d6d23946c42936c20a7ae06d9a1011ca10d31159e991564d000969783dc171cb9d71e53fe22915183624b818bf8a361fbd1a01c521b2b245341504407eac 0001-Support-libc-that-don-t-have-RTLD_DEEPBIND.patch"
|