mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 00:32:14 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3727 311d38ba-8fff-0310-9ca6-ca027cbcb966
34 lines
907 B
BlitzBasic
34 lines
907 B
BlitzBasic
DEPENDS = "curl icu libxml2 cairo libxslt libidn gnutls gtk+"
|
|
|
|
# If you activate HTML5 media support (ENABLE_VIDEO=1) you'll need:
|
|
# DEPENDS += " gstreamer gst-plugins-base gnome-vfs "
|
|
|
|
|
|
WEBKIT_PORT = "gtk-port"
|
|
WEBKIT_EXTRA_OPTIONS = "CONFIG-=qt"
|
|
|
|
FILES_webkit-gtklauncher = "${bindir}/GtkLauncher"
|
|
FILES_webkit-gtklauncher-dbg += "${bindir}/.debug/GtkLauncher"
|
|
|
|
require webkit.inc
|
|
|
|
SRC_URI += "file://autogen.sh \
|
|
file://configure.ac \
|
|
file://GNUmakefile.am \
|
|
file://fix_im.patch;patch=1 \
|
|
"
|
|
|
|
PR = "r5"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -d ${D}${libdir}
|
|
install -d ${D}${libdir}/pkgconfig
|
|
|
|
install -m 0755 ${S}/WebKitBuilds/Debug/WebKitTools/GtkLauncher/GtkLauncher ${D}${bindir}
|
|
cd ${S}/WebKitBuilds/Debug
|
|
PWD=`pwd` ${WEBKIT_QMAKE} WEBKIT_INC_DIR=${D}${prefix}/include WEBKIT_LIB_DIR=${D}${libdir} $PWD/../../WebKit.pro
|
|
oe_runmake install
|
|
}
|
|
|