mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
a92b448931
Removed patches applied upstream 0001-add-configure-flag-to-disable-tests.patch https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git/commit/?id=baeb5aa827d956bd06492775dc5bd9f89d394149 0002-Link-against-libintl-when-needed.patch https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git/commit/?id=b08caa2e3db53ea4263d0236c83a0df11a40a569 Autoreconf is not necessary anymore. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
578 B
Makefile
22 lines
578 B
Makefile
################################################################################
|
|
#
|
|
# kbd
|
|
#
|
|
################################################################################
|
|
|
|
KBD_VERSION = 2.0.4
|
|
KBD_SOURCE = kbd-$(KBD_VERSION).tar.xz
|
|
KBD_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kbd
|
|
KBD_CONF_OPTS = \
|
|
--disable-vlock \
|
|
--disable-tests
|
|
KBD_DEPENDENCIES = \
|
|
$(TARGET_NLS_DEPENDENCIES) \
|
|
host-pkgconf
|
|
KBD_LICENSE = GPL-2.0+
|
|
KBD_LICENSE_FILES = COPYING
|
|
|
|
KBD_INSTALL_TARGET_OPTS = MKINSTALLDIRS=$(@D)/config/mkinstalldirs DESTDIR=$(TARGET_DIR) install
|
|
|
|
$(eval $(autotools-package))
|