mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
9
package/libxkbcommon/Config.in
Normal file
9
package/libxkbcommon/Config.in
Normal file
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_LIBXKBCOMMON
|
||||
bool "libxkbcommon"
|
||||
select BR2_PACKAGE_LIBXCB if BR2_PACKAGE_XORG7
|
||||
help
|
||||
xkbcommon is a keymap compiler and support library which
|
||||
processes a reduced subset of keymaps as defined by the XKB
|
||||
specification.
|
||||
|
||||
http://xkbcommon.org/
|
||||
5
package/libxkbcommon/libxkbcommon.hash
Normal file
5
package/libxkbcommon/libxkbcommon.hash
Normal file
@@ -0,0 +1,5 @@
|
||||
# From https://lists.freedesktop.org/archives/wayland-devel/2019-February/039970.html
|
||||
sha256 b855c629849a97ab9835a4ad99d6b749a636f70d38a03f070c6ef72024825540 libxkbcommon-0.8.3.tar.xz
|
||||
|
||||
# License file:
|
||||
sha256 086caee279449369d41c1157911ec7696e707b93feba7280de757d3c470b2dfb LICENSE
|
||||
25
package/libxkbcommon/libxkbcommon.mk
Normal file
25
package/libxkbcommon/libxkbcommon.mk
Normal file
@@ -0,0 +1,25 @@
|
||||
################################################################################
|
||||
#
|
||||
# libxkbcommon
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBXKBCOMMON_VERSION = 0.8.3
|
||||
LIBXKBCOMMON_SITE = http://xkbcommon.org/download
|
||||
LIBXKBCOMMON_SOURCE = libxkbcommon-$(LIBXKBCOMMON_VERSION).tar.xz
|
||||
LIBXKBCOMMON_LICENSE = MIT/X11
|
||||
LIBXKBCOMMON_LICENSE_FILES = LICENSE
|
||||
LIBXKBCOMMON_INSTALL_STAGING = YES
|
||||
LIBXKBCOMMON_DEPENDENCIES = host-bison host-flex
|
||||
LIBXKBCOMMON_CONF_OPTS = --disable-wayland
|
||||
# uses C99 features
|
||||
LIBXKBCOMMON_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -std=gnu99"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XORG7),y)
|
||||
LIBXKBCOMMON_CONF_OPTS += --enable-x11
|
||||
LIBXKBCOMMON_DEPENDENCIES += libxcb
|
||||
else
|
||||
LIBXKBCOMMON_CONF_OPTS += --disable-x11
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user