diff options
author | Chris Lord <chris@openedhand.com> | 2007-12-06 10:23:27 +0000 |
---|---|---|
committer | Chris Lord <chris@openedhand.com> | 2007-12-06 10:23:27 +0000 |
commit | 2517420cbef24dd1e9a903a8659d41d083a57e23 (patch) | |
tree | d3a718c3a47ec0c746907395ca9c7bd072540ab3 /meta/packages/webkit/webkit-gtk_svn.bb | |
parent | 8ccfa5c993a20c92ef7a2630ed37dea6d1159a89 (diff) | |
download | poky-2517420cbef24dd1e9a903a8659d41d083a57e23.tar.gz |
Import files from OE to build WebKit (patch to link icu required)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3317 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/webkit/webkit-gtk_svn.bb')
-rw-r--r-- | meta/packages/webkit/webkit-gtk_svn.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/packages/webkit/webkit-gtk_svn.bb b/meta/packages/webkit/webkit-gtk_svn.bb new file mode 100644 index 0000000000..262c6820db --- /dev/null +++ b/meta/packages/webkit/webkit-gtk_svn.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DEPENDS = "curl icu libxml2 cairo libxslt libidn gnutls gtk+" | ||
2 | |||
3 | |||
4 | WEBKIT_PORT = "gtk-port" | ||
5 | WEBKIT_EXTRA_OPTIONS = "CONFIG-=qt" | ||
6 | |||
7 | FILES_webkit-gtklauncher = "${bindir}/GtkLauncher" | ||
8 | FILES_webkit-gtklauncher-dbg = "${bindir}/.debug/GtkLauncher" | ||
9 | |||
10 | require webkit.inc | ||
11 | |||
12 | PR = "r3" | ||
13 | |||
14 | do_install() { | ||
15 | install -d ${D}${bindir} | ||
16 | install -d ${D}${libdir} | ||
17 | install -d ${D}${libdir}/pkgconfig | ||
18 | |||
19 | install -m 0755 ${S}/WebKitBuilds/Debug/WebKitTools/GtkLauncher/GtkLauncher ${D}${bindir} | ||
20 | cd ${S}/WebKitBuilds/Debug | ||
21 | PWD=`pwd` ${WEBKIT_QMAKE} WEBKIT_INC_DIR=${D}${prefix}/include WEBKIT_LIB_DIR=${D}${libdir} $PWD/../../WebKit.pro | ||
22 | oe_runmake install | ||
23 | } | ||
24 | |||