mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
213a15cb90
- Change the meta-gnome recipes to use the gtk3 variant of webkitgtk - Import gcr3 recipe from oe-core Most Gnome recipes require webkitgtk built with gtk+3. oe-core is in the process of updating webkitgtk to be built with gtk4. It will be necessary to add a recipe that provides the gtk+3 variant, or we wont be able to use e.g. geary with gmail addresses or provide google integration for gnome-calendar or nautilus/files. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
942 B
BlitzBasic
32 lines
942 B
BlitzBasic
SUMMARY = "Simple web browser"
|
|
DESCRIPTION = "Simple open source web browser based on WebKit2/GTK"
|
|
HOMEPAGE = "https://surf.suckless.org/"
|
|
SECTION = "x11/graphics"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2a6f86d002ae9ae1eb1ccc466289f146"
|
|
|
|
DEPENDS = "webkitgtk3 gtk+3 glib-2.0 gcr3"
|
|
|
|
REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
|
|
|
SRCREV = "665a709b522a6fa18c671f1fc41297603292d0e8"
|
|
SRC_URI = "git://git.suckless.org/surf;branch=surf-webkit2 \
|
|
"
|
|
SRC_URI += "${@bb.utils.contains('PACKAGECONFIG', 'soup3', 'file://0001-config.mk-Fix-compiler-and-linker.patch file://0001-config.ml-make-compatible-with-webkitgtk-2.34.0.patch', '', d)}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit pkgconfig features_check
|
|
|
|
PACKAGECONFIG_SOUP ?= "soup3"
|
|
PACKAGECONFIG ??= "${PACKAGECONFIG_SOUP}"
|
|
|
|
PACKAGECONFIG[soup2] = ",,,"
|
|
PACKAGECONFIG[soup3] = ",,,"
|
|
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
|
|
do_install () {
|
|
install -D -m 0755 ${S}/surf ${D}${bindir}/surf
|
|
}
|