From ae189ee5327f47f8adde80ea055fa6d562740930 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 8 May 2025 17:19:08 +0300 Subject: [PATCH] Initial Commit --- pkg.info | 9 +++++++++ source.sh | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 pkg.info create mode 100644 source.sh diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..091472e --- /dev/null +++ b/pkg.info @@ -0,0 +1,9 @@ +name: webkitgtk +description: Cross-platform web browser engine for GTK +version: 2.48.1 +url: https://webkitgtk.org/ +license: AFL2.0 OR GPL2-or-later,Apache-2.0,Apache-2.0 WITH LLVM-exception,BSD-2-Clause,BSD-2-Clause-Views,BSD-3-Clause,BSD-Source-Code,BSL1.0,GPL2-only,GPL3-only WITH Autoconf-exception-3.0,GPL3-or-later WITH Bison-exception-2.2,ICU,ISC,LGPL2.1-only,LGPL2.1-or-later,MIT,MPL1.1,MPL2,NCSA,NCSA OR MIT,OFL1.1,SunPro,Unicode-TOU,bzip2-1.0.6 +architecture: any +depends: ["at-spi2-core","bubblewrap","cairo","enchant","expat","fontconfig","freetype2","gcc","gdk-pixbuf","glib","glibc","gst-plugins-bad","gst-plugins-base","gstreamer","gtk3","harfbuzz","icu","libavif","libdrm","libepoxy","libgcrypt","libglvnd","libjpeg-turbo","libjxl","libpng","libseccomp","libsecret","libsoup","libtasn1","libwebp","libx11","libxml2","libxslt","mesa","openjpeg","pango","sqlite","wayland","woff2","xdg-dbus-proxy","zlib"] +make_depends: ["cmake","gobject-introspection","gperf","python3","ruby","unifdef","wayland-protocols"] +type: source diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..143c577 --- /dev/null +++ b/source.sh @@ -0,0 +1,55 @@ +# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package +# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE +# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT + +DOWNLOAD="https://webkitgtk.org/releases/webkitgtk-${BPM_PKG_VERSION}.tar.xz" +FILENAME="${DOWNLOAD##*/}" + +# The prepare function is executed in the root of the temp directory +# This function is used for downloading files and putting them into the correct location +prepare() { + wget "$DOWNLOAD" + tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" +} + +# The build function is executed in the source directory +# This function is used to compile the source code +build() { + mkdir build + cd build + + cmake -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_SKIP_INSTALL_RPATH=ON \ + -DPORT=GTK \ + -DLIB_INSTALL_DIR=/usr/lib \ + -DUSE_LIBBACKTRACE=OFF \ + -DUSE_LIBHYPHEN=OFF \ + -DENABLE_GAMEPAD=OFF \ + -DENABLE_MINIBROWSER=ON \ + -DENABLE_DOCUMENTATION=OFF \ + -DENABLE_WEBDRIVER=OFF \ + -DENABLE_SPEECH_SYNTHESIS=OFF \ + -DUSE_FLITE=OFF \ + -DUSE_GTK4=OFF \ + -DENABLE_JOURNALD_LOG=OFF \ + -DENABLE_BUBBLEWRAP_SANDBOX=ON \ + -DUSE_SYSPROF_CAPTURE=NO \ + -Wno-dev .. + make +} + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + cd build + + make install DESTDIR="$BPM_OUTPUT" + + # Combine all license files (Code from arch linux) + find "$BPM_SOURCE"/Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z | while IFS= read -d $'\0' -r _f; do + echo "### $_f ###" + cat "$_f" + echo + done | install -Dm644 /dev/stdin "$BPM_OUTPUT"/usr/share/licenses/webkitgtk/LICENSE +}