diff options
Diffstat (limited to 'recipes/xoo')
-rw-r--r-- | recipes/xoo/files/gta01.png | bin | 0 -> 182899 bytes | |||
-rw-r--r-- | recipes/xoo/files/gta01.xml | 7 | ||||
-rw-r--r-- | recipes/xoo/xoo_svn.bb | 22 |
3 files changed, 29 insertions, 0 deletions
diff --git a/recipes/xoo/files/gta01.png b/recipes/xoo/files/gta01.png Binary files differnew file mode 100644 index 0000000000..e0aae82051 --- /dev/null +++ b/recipes/xoo/files/gta01.png diff --git a/recipes/xoo/files/gta01.xml b/recipes/xoo/files/gta01.xml new file mode 100644 index 0000000000..877a91f180 --- /dev/null +++ b/recipes/xoo/files/gta01.xml @@ -0,0 +1,7 @@ +<skin> + <device + img="gta01.png" + width="680" height="689" + display_width="480" display_height="640" display_depth="16" + display_x="98" display_y="22" /> +</skin> diff --git a/recipes/xoo/xoo_svn.bb b/recipes/xoo/xoo_svn.bb new file mode 100644 index 0000000000..e9cd7ee9b7 --- /dev/null +++ b/recipes/xoo/xoo_svn.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "Xoo is a GTK2 based graphical wrapper around a windowed X Server. \ +It is intended for embedded developers that want to simulate a target device \ +(with an accurate display size, working hardware buttons, etc) on a desktop machine." +HOMEPAGE = "http://projects.o-hand.com/xoo" +LICENSE = "GPL" +DEPENDS = "virtual/libx11 libxtst gtk+ libglade expat" +PV = "0.7+svnr${SRCREV}" +PR = "r1" + +SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=Xoo;proto=http \ + file://*.png \ + file://*.xml" +S = "${WORKDIR}/Xoo" + +inherit autotools + +do_install_append() { + for i in ${WORKDIR}/*.png ${WORKDIR}/*.xml; do + install -m 0644 $i ${D}${datadir}/${PN}/ + done +} + |