1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-01 03:33:51 +03:00

add console fonts package

Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
This commit is contained in:
Xiangfu Liu 2010-08-17 18:11:16 +08:00
parent 7e2599183a
commit be138dd43d

View File

@ -15,13 +15,22 @@ PKG_SOURCE:=kbd-$(PKG_VERSION).tar.gz
include $(INCLUDE_DIR)/package.mk
define Package/kbd
define Package/kbd/Default
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Keyboard and console utilities for Linux
URL:=ftp://ftp.kernel.org/pub/linux/utils/kbd
endef
define Package/kbd
$(call Package/kbd/Default)
TITLE:=Keyboard and console utilities for Linux
endef
define Package/kbd-console-fonts
$(call Package/kbd/Default)
TITLE:=Console fonts for Linux
endef
define Package/kbd/description
Keyboard and console utilities for Linux
endef
@ -38,4 +47,10 @@ define Package/kbd/install
done
endef
define Package/kbd-console-fonts/install
$(INSTALL_DIR) $(1)/usr/share/consolefonts
$(CP) $(PKG_BUILD_DIR)/data/consolefonts/* $(1)/usr/share/consolefonts/
endef
$(eval $(call BuildPackage,kbd))
$(eval $(call BuildPackage,kbd-console-fonts))