mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 00:34:26 +02:00
50 lines
1.4 KiB
Text
50 lines
1.4 KiB
Text
# Contributor: Luca Weiss <luca@lucaweiss.eu>
|
|
# Maintainer: Luca Weiss <luca@lucaweiss.eu>
|
|
pkgname=gammaray
|
|
pkgver=3.2.0
|
|
pkgrel=0
|
|
pkgdesc="A tool for examining the internals of a Qt application and to some extent also manipulate it"
|
|
url="https://www.kdab.com/development-resources/qt-tools/gammaray/"
|
|
# ppc64le, s390x, armhf, riscv64 and loongarch64 blocked by qt5-qtwebengine
|
|
# x86 blocked by lldb
|
|
arch="all !ppc64le !s390x !armhf !riscv64 !x86 !loongarch64"
|
|
license="GPL-2.0-or-later"
|
|
depends="lldb"
|
|
makedepends="
|
|
cmake
|
|
kcoreaddons-dev
|
|
perl
|
|
qt6-qt3d-dev
|
|
qt6-qtbase-dev
|
|
qt6-qtconnectivity-dev
|
|
qt6-qtdeclarative-dev
|
|
qt6-qtlocation-dev
|
|
qt6-qtscxml-dev
|
|
qt6-qtsvg-dev
|
|
qt6-qttools-dev
|
|
qt6-qtwayland-dev
|
|
qt6-qtwebengine-dev
|
|
samurai
|
|
syntax-highlighting-dev
|
|
"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz"
|
|
builddir="$srcdir/GammaRay-$pkgver"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
gzip "$pkgdir"/usr/share/man/man1/gammaray.1
|
|
}
|
|
|
|
sha512sums="
|
|
1c1e0f2286623c4b0a7532bd8ad947065e23100793ead80fdde12e2267453d4bdc9608a093c4ce29af575080b20fce0ab68bd845bcde00f13357753bcf479494 gammaray-3.2.0.tar.gz
|
|
"
|