diff options
author | Philippe De Swert <philippedeswert@scarlet.be> | 2006-02-05 12:23:04 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-05 12:23:04 +0000 |
commit | 1f90c14b224e96dfc0d81244bc14a6c73dba6053 (patch) | |
tree | 5dc3b7e60abaa39f4e60ee1e1f04927da6fdecb5 | |
parent | 72e2127ba99bd5de12f03630834403ec3dab80b6 (diff) |
packages/xmonobut/xmonobut_0.4.1.bb
* new file for more recent xmonobut
* fixes handhelds.org bug #1459
-rw-r--r-- | packages/xmonobut/xmonobut_0.4.1.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/xmonobut/xmonobut_0.4.1.bb b/packages/xmonobut/xmonobut_0.4.1.bb new file mode 100644 index 0000000000..4c60d4b9c2 --- /dev/null +++ b/packages/xmonobut/xmonobut_0.4.1.bb @@ -0,0 +1,17 @@ +LICENSE = "GPL" +PR = "r1" +DESCRIPTION = "utility to allow middle and right clicking with a stylus" +SECTION = "x11/utils" +DEPENDS = "diet-x11 xext xpm" +SRC_URI = "http://www.handhelds.org/~philippe/sources/xmonobut-${PV}.tar.gz \ + file://xmonobut.desktop" +inherit autotools + +do_install() { + install -d ${D}${bindir} + install -d ${D}${datadir}/applications + install -d ${D}${datadir}/pixmaps + install -m 0755 xmonobut ${D}${bindir}/xmonobut + install -m 0644 xmonobut.xpm ${D}${datadir}/pixmaps/xmonobut.xpm + install -m 0644 ${WORKDIR}/xmonobut.desktop ${D}${datadir}/applications/xmonobut.desktop +} |