mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-26 03:06:15 +02:00
initial port of kbd utilities (thanks to wryun)
This commit is contained in:
parent
9e13344b9d
commit
bef387816c
41
kbd/Makefile
Normal file
41
kbd/Makefile
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2006-2008 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=kbd
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_VERSION:=1.15.1
|
||||||
|
PKG_SOURCE_URL:=ftp://ftp.kernel.org/pub/linux/utils/kbd
|
||||||
|
PKG_SOURCE:=kbd-$(PKG_VERSION).tar.gz
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/kbd
|
||||||
|
SECTION:=utils
|
||||||
|
CATEGORY:=Utilities
|
||||||
|
TITLE:=Keyboard and console utilities for Linux
|
||||||
|
URL:=ftp://ftp.kernel.org/pub/linux/utils/kbd
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/kbd/description
|
||||||
|
Keyboard and console utilities for Linux
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Configure
|
||||||
|
( cd $(PKG_BUILD_DIR) ; aclocal; autoheader; automake; autoconf )
|
||||||
|
$(call Build/Configure/Default, CFLAGS=-Wno-cast-align )
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/kbd/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
|
for f in setfont psfxtable setmetamode unicode_stop kbdrate loadkeys kbd_mode showconsolefont loadunimap unicode_start deallocvt openvt getkeycodes showkey setleds cad chvt mapscrn fgconsole setkeycodes; do \
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$$$$f $(1)/usr/sbin;\
|
||||||
|
done
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,kbd))
|
Loading…
Reference in New Issue
Block a user