PKGBUILDs/qt5-webkit/mingw-w64/PKGBUILD

133 lines
5.1 KiB
Bash

# Maintainer: Martchus <martchus@gmx.net>
# Contributor: ant32 <antreimer@gmail.com>
# Contributor: Filip Brcic <brcha@gna.org>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
# See the comments to enable further dependencies/functionality.
# Includes dynamic and static versions; if only one version is requried, just
# set $NO_STATIC_LIBS or $NO_SHARED_LIBS.
# All patches are managed at https://github.com/Martchus/qtwebkit
# Note: most patches are originally from http://pkgs.fedoraproject.org/git/rpms/mingw-qt5-qtwebkit.git
_qt_module=qtwebkit
pkgname=mingw-w64-qt5-webkit
pkgver=5.7.0
pkgrel=2
arch=('any')
pkgdesc="Classes for a WebKit2 based implementation and a new QML API (mingw-w64)"
depends=('mingw-w64-qt5-declarative'
'mingw-w64-qt5-sensors'
'mingw-w64-qt5-location'
'mingw-w64-qt5-multimedia'
'mingw-w64-angleproject'
'mingw-w64-fontconfig'
'mingw-w64-libpng'
'mingw-w64-libjpeg-turbo'
'mingw-w64-libxslt'
'mingw-w64-zlib'
'mingw-w64-icu'
'mingw-w64-sqlite'
'mingw-w64-libwebp')
# these dependencies will enable further functionality
#depends+=('mingw-w64-webchannel')
#depends+=('mingw-w64-gst-plugins-base')
#optdepends+=('mingw-w64-gst-plugins-good: Webm codec support')
makedepends=('mingw-w64-gcc' 'python' 'gperf' 'ruby' 'mingw-w64-pkg-config')
options=('!strip' '!buildflags' 'staticlibs')
license=('GPL3' 'LGPL' 'FDL' 'custom')
url="https://www.qt.io/"
_pkgfqn="${_qt_module}-opensource-src-${pkgver}"
groups=(mingw-w64-qt mingw-w64-qt5)
source=("https://download.qt.io/community_releases/${pkgver:0:3}/${pkgver}/${_pkgfqn}.tar.xz"
'0001-Use-correct-ICU-libs.patch'
'0002-Use-pkg-config.patch'
'0003-Use-system-ANGLE-rather-than-bundled-version.patch'
'0004-Don-t-require-qt5-base-to-be-built-with-ICU-support.patch'
'0005-Revert-removal-of-QT4_UNICODE-and-related-code-paths.patch'
'0006-Prevent-symbols-not-being-exported-in-Qt5WebKit.dll.patch'
'0007-Build-with-smaller-debug-info.patch'
'0008-Fix-build-failure-due-to-building-without-ICU.patch'
'0009-Establish-compatibility-with-latest-ANGLE.patch'
'0010-Include-intrin.h-for-declaration-of-_mm_mfence.patch')
md5sums=('9379b8829639645c184fa63532035098'
'1dc972b810d5b0db2a06ae4fb9a04949'
'202eb07eec8f378d90b9c9d1c330223e'
'cfa65552c15c768e4f44a78e8eaf7bd6'
'464e463e5c88329809b2615c3170cce0'
'306c56d68a2f17a9208d7423c2e02b7f'
'a90c6a7b0b1cbf592ed6af969577fffc'
'385b803e7a28751a75b914187533bb95'
'00c239de9f06098d1410c8a9f57d01c6'
'29576167338936839f4b2f0f44318f1d'
'710d0631597b3fbb77246376f74fb2f9')
_architectures='i686-w64-mingw32 x86_64-w64-mingw32'
[[ $NO_STATIC_LIBS ]] || \
makedepends+=('mingw-w64-qt5-base-static') \
optdepends+=('mingw-w64-qt5-base-static: use of static libraries') \
_configurations+=('CONFIG+=static')
[[ $NO_SHARED_LIBS ]] || \
_configurations+=('CONFIG+=shared')
prepare() {
cd "${srcdir}/${_pkgfqn}"
# Apply patches; further descriptions can be found in patch files itself
for patch in "$srcdir/"*.patch; do
patch -p1 -i "$patch"
done
# Make sure the bundled copy of the ANGLE libraries isn't used
rm -rf Source/ThirdParty/ANGLE
}
build() {
cd "${srcdir}/${_pkgfqn}"
unset PKG_CONFIG_PATH
for _arch in ${_architectures}; do
for _config in "${_configurations[@]}"; do
msg2 "Building ${_config##*=} version for ${_arch}"
mkdir -p build-${_arch}-${_config##*=} && pushd build-${_arch}-${_config##*=}
# Since Source/ThirdParty/ANGLE has been removed ensure files
# from system ANGLE can be included (patches from Fedora don't help
# here because Fedora uses other paths)
export CPATH="$CPATH:/usr/$_arch/include:/usr/$_arch/include/GLSLANG"
# SH_GLSL_OUTPUT has been renamed to SH_GLSL_COMPATIBILITY_OUTPUT
# in the latest ANGLE version so I just add a definition for backward compatibility
${_arch}-qmake-qt5 \
"QMAKE_CXXFLAGS+=-Wno-c++0x-compat" \
"DEFINES+=SH_GLSL_OUTPUT=SH_GLSL_COMPATIBILITY_OUTPUT" \
../WebKit.pro
make
popd
done
done
}
package() {
cd "${srcdir}/${_pkgfqn}"
for _arch in ${_architectures}; do
for _config in "${_configurations[@]}"; do
pushd build-${_arch}-${_config##*=}
make INSTALL_ROOT="$pkgdir" install
find "${pkgdir}/usr/${_arch}/lib" -maxdepth 1 -name "*.dll" -exec rm {} \;
[ "$NO_STATIC_EXECUTABLES" -a "${_config##*=}" = static -o "$NO_EXECUTABLES" ] && \
find "${pkgdir}/usr/${_arch}" -name "*.exe" -exec rm {} \; || \
find "${pkgdir}/usr/${_arch}" -name "*.exe" -exec ${_arch}-strip --strip-all {} \;
find "${pkgdir}/usr/${_arch}" -name "*.dll" -exec ${_arch}-strip --strip-unneeded {} \;
find "${pkgdir}/usr/${_arch}" -name "*.a" -exec ${_arch}-strip -g {} \;
[[ -d "${pkgdir}/usr/${_arch}/lib/qt/bin/" ]] && \
find "${pkgdir}/usr/${_arch}/lib/qt/bin/" -exec strip --strip-all {} \;
find "${pkgdir}/usr/${_arch}/lib/" -iname "*.so.$pkgver" -exec strip --strip-unneeded {} \;
popd
done
done
}