menu-cache: new package

[Thomas:
  - Remove the MENU_CACHE_VERSION_MINOR variable, not needed. Noticed
    by Yann E. Morin.
  - Rewrap Config.in help text.]

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Vicente Olivert Riera 2014-11-21 15:33:08 +00:00 committed by Thomas Petazzoni
parent e5d3c5abde
commit 91489ddc48
4 changed files with 35 additions and 0 deletions

View file

@ -806,6 +806,7 @@ menu "Graphics"
source "package/libva/Config.in"
source "package/libva-intel-driver/Config.in"
source "package/libvips/Config.in"
source "package/menu-cache/Config.in"
source "package/opencv/Config.in"
source "package/opengl/Config.in"
source "package/openjpeg/Config.in"

View file

@ -0,0 +1,16 @@
config BR2_PACKAGE_MENU_CACHE
bool "menu-cache"
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_LIBFM_EXTRA
depends on BR2_USE_WCHAR # libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # libglib2
help
Small library from LXDE project used for application menu
integration
http://wiki.lxde.org/
comment "menu-cache needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS

View file

@ -0,0 +1,2 @@
# From http://blog.lxde.org/?p=1299
sha1 e7b3854109f9826472cf9795e924acebe5e27861 menu-cache-1.0.0.tar.xz

View file

@ -0,0 +1,16 @@
################################################################################
#
# menu-cache
#
################################################################################
MENU_CACHE_VERSION_MAJOR = 1.0
MENU_CACHE_VERSION = $(MENU_CACHE_VERSION_MAJOR).0
MENU_CACHE_SOURCE = menu-cache-$(MENU_CACHE_VERSION).tar.xz
MENU_CACHE_SITE = http://sourceforge.net/projects/lxde/files/menu-cache/$(MENU_CACHE_VERSION_MAJOR)
MENU_CACHE_DEPENDENCIES = libfm-extra libglib2
MENU_CACHE_LICENSE = LGPLv2.1
MENU_CACHE_LICENSE_FILES = COPYING
MENU_CACHE_INSTALL_STAGING = YES
$(eval $(autotools-package))