aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xoo/xoo_svn.bb
blob: 351a82c3d17678fb870be2fa88aca7ff3a7e4306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
SRCREV = "1971"
PV = "0.7+svnr${SRCPV}"
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
}