1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-28 22:56:21 +03:00
openwrt-packages/terminus-font/Makefile
kyak a14421bcde terminus-font: initial port
the smallest font is 6x12, most unicode chars supported
2011-02-14 14:42:04 +03:00

39 lines
1005 B
Makefile

#
# This is free software, licensed under the GNU General Public License v2.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=terminus-font
PKG_VERSION:=4.32
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
PKG_MD5SUM:=9b74047edcc236a7d4af8abf966c3e7c
include $(INCLUDE_DIR)/package.mk
define Package/terminus-font
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Monospaced font
URL:=http://sourceforge.net/projects/terminus-font/
DEPENDS:=+kbd
endef
define Package/terminus-font/description
Monospaced font designed for long (8+ hours per day) work with computers. Contains 850 characters, supports about 120 language sets, many IBM, Windows and Macintosh code pages, IBM VGA / vt100 / xterm pseudographic characters and Esperanto.
endef
define Package/terminus-font/install
$(INSTALL_DIR) \
$(1)/usr/share/kbd/consolefonts
$(INSTALL_DATA) \
$(PKG_BUILD_DIR)/ter-v* \
$(1)/usr/share/kbd/consolefonts
endef
$(eval $(call BuildPackage,terminus-font))