diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-23 17:50:40 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-23 17:50:40 +0300 |
commit | 4f9396bd0c6a418d361241d229227edf8b5a3187 (patch) | |
tree | 444f4638921743cdeecfdf94fe2f392828ab2d48 /testing/webkit2gtk/build | |
parent | 6855e0e636ea15acb57744a85623ef7dd382e72a (diff) | |
download | repository-4f9396bd0c6a418d361241d229227edf8b5a3187.tar.gz |
webkit2gtk: update and move to extra
Diffstat (limited to 'testing/webkit2gtk/build')
-rwxr-xr-x | testing/webkit2gtk/build | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/testing/webkit2gtk/build b/testing/webkit2gtk/build deleted file mode 100755 index 67f29769..00000000 --- a/testing/webkit2gtk/build +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -e - -for patch in *.patch; do - patch -p1 < "$patch" -done - -# Remove gettext requirement. -sed -i 's/ngettext/printf/g' Tools/MiniBrowser/gtk/BrowserDownloadsBar.c -sed -i '/po_files *.po/d' Source/WebCore/platform/gtk/po/CMakeLists.txt -sed -i '/^GETTEXT_C/d' Source/WebCore/platform/gtk/po/CMakeLists.txt - -export DESTDIR="$1" - -cmake -B build \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIB_INSTALL_DIR=/usr/lib \ - -DPORT=GTK \ - -DCMAKE_SKIP_RPATH=ON \ - -DENABLE_BUBBLEWRAP_SANDBOX=OFF \ - -DENABLE_GEOLOCATION=OFF \ - -DENABLE_GLES2=ON \ - -DENABLE_INTL=OFF \ - -DENABLE_INTROSPECTION=OFF \ - -DENABLE_MINIBROWSER=OFF \ - -DENABLE_OPENGL=OFF \ - -DENABLE_SPELLCHECK=OFF \ - -DENABLE_VIDEO=OFF \ - -DENABLE_WEBGL=OFF \ - -DENABLE_WEB_AUDIO=OFF \ - -DUSE_LIBHYPHEN=OFF \ - -DUSE_LIBNOTIFY=OFF \ - -DUSE_LIBSECRET=OFF \ - -DUSE_OPENJPEG=OFF \ - -DUSE_WOFF2=OFF \ - -DUSE_WPE_RENDERER=OFF \ - -DENABLE_WEB_CRYPTO=OFF \ - -Wno-dev - -cmake --build build -cmake --install build |