# Contributor: A. Wilcox # Maintainer: A. Wilcox pkgname=qt5-qtwebkit _realname=qtwebkit pkgver=5.212.0_alpha2 _realver=${pkgver/_/-} pkgrel=0 pkgdesc="Open source Web browser engine" url="https://github.com/annulen/webkit" arch="all" license="LGPL-2.1+ AND BSD-3-Clause AND Others" depends="gst-plugins-base" depends_dev="qt5-qtbase-dev" makedepends="$depends_dev ninja sqlite-dev icu-dev ruby perl bison flex gperf libxml2-dev libxslt-dev libjpeg-turbo-dev libpng-dev zlib-dev glib-dev gstreamer-dev fontconfig-dev qt5-qtsensors-dev qt5-qtpositioning-dev qt5-qtdeclarative-dev qt5-qtwebchannel-dev libxcomposite-dev libxrender-dev gst-plugins-base-dev hyphen-dev libexecinfo-dev" subpackages="$pkgname-dev $pkgname-doc" source="https://github.com/annulen/webkit/releases/download/$_realname-$_realver/$_realname-$_realver.tar.xz musl-thread-stacksize.patch " builddir="$srcdir"/$_realname-$_realver unpack() { default_unpack # just ripped from Firefox's APKBUILD... [ -z $SKIP_PYTHON ] || return 0 msg "Killing all remaining hope for humanity and building Python 2..." cd "$srcdir" [ -d python ] && rm -r python mkdir python cd python # 19:39 <+solar> just make the firefox build process build its own py2 copy curl -O https://www.python.org/ftp/python/2.7.15/Python-2.7.15.tar.xz tar xJf Python-2.7.15.tar.xz cd Python-2.7.15 # 20:03 TheWilfox: there's always violence ./configure --prefix="$srcdir/python" make -j $JOBS # 6 tests failed: # test__locale test_os test_posix test_re test_strptime test_time # make test make -j $JOBS install } build() { cd "$builddir" if [ "$CBUILD" != "$CHOST" ]; then CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux" fi export PATH="$srcdir/python/bin:$PATH" # We can enable the JIT when it is stable on all Tier 1 platforms: # pmmx (ensure no SSE) # ppc # ppc64 # # DONE: # aarch64 # armv7 # x86_64 cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DBUILD_SHARED_LIBS=True \ -DCMAKE_BUILD_TYPE=RelWithDebugInfo \ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \ -DCMAKE_C_FLAGS="$CFLAGS" \ -DENABLE_JIT=OFF \ -DPORT=Qt \ -DUSE_SYSTEM_MALLOC=ON \ ${CMAKE_CROSSOPTS} # too memory hungry if [ -z "$JOBS" -o $JOBS -gt 32 ]; then make -j32 else make fi } check() { cd "$builddir" CTEST_OUTPUT_ON_FAILURE=TRUE ctest } package() { cd "$builddir" make DESTDIR="$pkgdir" install } sha512sums="b15985aab20c5618dc1f71a0d91f02dbed993516272090a4a12990714bf4c9554ccbdcf9d6a143bf46fcc2c170f691e571114d61686fe49791f8d5c540785758 qtwebkit-5.212.0-alpha2.tar.xz 2b778d55a00107f226231d00f13efb3064f539e2b9b690e3c542ee8b6be975b06b673efa27ececf09e0707c8319cb00f72177d9487ca1c36be5a98ab9eb33124 musl-thread-stacksize.patch"