diff options
author | Koen Kooi <koen@openembedded.org> | 2009-03-29 13:13:53 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-03-29 13:13:53 +0200 |
commit | 1d5d7f5fe5bafc8608cf89e9a96da6ebc574a529 (patch) | |
tree | 49dd0e7e2d2556a06b78ac68f182ddda864d7de1 /recipes/fluxbox/fluxbox_1.1.1.bb | |
parent | 8f8efbe43a7f28802d066f7f83915e8fbd0d4cc2 (diff) |
fluxbox: add 1.1.1, remove old versions
Diffstat (limited to 'recipes/fluxbox/fluxbox_1.1.1.bb')
-rw-r--r-- | recipes/fluxbox/fluxbox_1.1.1.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes/fluxbox/fluxbox_1.1.1.bb b/recipes/fluxbox/fluxbox_1.1.1.bb new file mode 100644 index 0000000000..406974bc81 --- /dev/null +++ b/recipes/fluxbox/fluxbox_1.1.1.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "The Fluxbox Windowmanager" +HOMEPAGE = "http://www.fluxbox.org" +LICENSE = "MIT" +DEPENDS = "fontconfig virtual/libx11" + +PE = "1" + +SRC_URI = "${SOURCEFORGE_MIRROR}/fluxbox/fluxbox-${PV}.tar.gz \ + file://fluxbox-wm \ + " + +inherit autotools update-alternatives + +EXTRA_OECONF = "--disable-xmb \ + " + +do_install_append() { + install -d ${D}${bindir} + install -m 0755 ${WORKDIR}/fluxbox-wm ${D}${bindir} +} + +FILES_${PN} += "${datadir}/fluxbox/" + +ALTERNATIVE_NAME = "x-window-manager" +ALTERNATIVE_PATH = "${bindir}/fluxbox-wm" +ALTERNATIVE_LINK = "x-window-manager" +ALTERNATIVE_PRIORITY = "20" + |