2010-07-14 10:21:15 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Qi Hardware Inc.
|
|
|
|
# Author: Xiangfu Liu <xiangfu@sharism.com>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=zhcon
|
|
|
|
PKG_VERSION:=0.2.5
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://ncu.dl.sourceforge.net/project/zhcon/zhcon/0.2.6/
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 21:23:51 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2010-07-14 10:21:15 +03:00
|
|
|
|
|
|
|
define Package/zhcon
|
|
|
|
TITLE:=zhcon
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=@BROKEN
|
|
|
|
URL:=http://zhcon.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/zhcon/description
|
|
|
|
zhcon is a Fast double-byte virtual console for Chinese/Japanese/Korean (CJK) running under GNU/Linux and FreeBSD
|
|
|
|
endef
|
|
|
|
|
2011-02-06 21:23:51 +02:00
|
|
|
|
|
|
|
TARGET_LDFLAGS+=-lcharset -liconv
|
2010-07-14 10:21:15 +03:00
|
|
|
|
|
|
|
CONFIGURE_ARGS +=
|
|
|
|
|
|
|
|
define Package/zhcon/install
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/zhcon/font
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/zhcon/input
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,zhcon))
|