33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'gammaray'
|
|
pkgname=gammaray
|
|
version=2.11.1
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DGAMMARAY_INSTALL_QT_LAYOUT=true -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules -DPLUGIN_INSTALL_DIR=/usr/lib/qt5/plugins/gammaray"
|
|
hostmakedepends="qt5-host-tools qt5-devel"
|
|
makedepends="qt5-devel"
|
|
short_desc="Tool to poke around in a Qt-application"
|
|
maintainer="toluschr <toluschr@protonmail.com>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://github.com/KDAB/GammaRay"
|
|
distfiles="${homepage}/releases/download/v${version}/gammaray-${version}.tar.gz"
|
|
checksum=87a1d72ad1ad6d1a0156c54a85b0976ab38c6a64136458ca7c4ee491566d25d0
|
|
|
|
LDFLAGS=" -Wl,-no-fatal-warnings"
|
|
|
|
post_patch() {
|
|
vsed -i CMakeLists.txt -e 's|plugins/gammaray|lib/qt5/plugins/gammaray|'
|
|
}
|
|
|
|
gammaray-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/qt5/mkspecs
|
|
cd "${DESTDIR}"
|
|
# unversioned probes should go in main package
|
|
for f in usr/lib/*.so; do [ -L "${f}" ] && { vmove "${f}"; }; done
|
|
}
|
|
}
|