fd9ff4fedf
To simplify testing for the currently used gcc version introduce global environment variables to avoid running `gcc --version`.
48 lines
1.6 KiB
Bash
48 lines
1.6 KiB
Bash
# Template file for 'qt5-webkit'
|
|
pkgname=qt5-webkit
|
|
version=5.6.2
|
|
revision=1
|
|
nocross=yes
|
|
build_style=qmake
|
|
wrksrc=qtwebkit-opensource-src-${version}
|
|
hostmakedepends="bison flex gperf perl python ruby pkg-config qt5-qmake"
|
|
makedepends="libwebp-devel libxslt-devel libXcomposite-devel sqlite-devel
|
|
gst-plugins-base1-devel qt5-declarative-devel qt5-location-devel
|
|
qt5-sensors-devel qt5-webchannel-devel"
|
|
short_desc="A cross-platform application and UI framework (Qt5) - WebKit2 component"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3, LGPL-2.1"
|
|
homepage="https://www.qt.io/"
|
|
distfiles="https://download.qt.io/community_releases/${version%.*}/${version}/qtwebkit-opensource-src-${version}.tar.xz"
|
|
checksum=528a6b8b1c5095367b26e8ce4f3a46bb739e2e9913ff4dfc6ef58a04fcd73966
|
|
|
|
if [ ${XBPS_GCC_VERSION_MAJOR} -gt 5 ]; then
|
|
CXXFLAGS="-fno-delete-null-pointer-checks"
|
|
fi
|
|
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/qt5 -I${XBPS_CROSS_BASE}/usr/include/qt5/QtCore"
|
|
CXXFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/qt5 -I${XBPS_CROSS_BASE}/usr/include/qt5/QtCore"
|
|
export QT_SYSROOT=${XBPS_CROSS_BASE}
|
|
fi
|
|
|
|
pre_configure() {
|
|
# Generate headers
|
|
syncqt.pl-qt5 -version ${version} Source/sync.profile
|
|
}
|
|
post_install() {
|
|
# QMAKE_PRL_BUILD_DIR contains a reference the build dir; drop it
|
|
find ${DESTDIR}/usr/lib -type f -name '*.prl' -exec \
|
|
sed -i "{}" -e "/^QMAKE_PRL_BUILD_DIR/d" \;
|
|
}
|
|
|
|
qt5-webkit-devel_package() {
|
|
short_desc+=" (development)"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/*.prl
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|