Root/ben-cyrillic/Makefile

1#
2# OpenWrt
3#
4# This is free software, licensed under the GNU General Public License v2.
5#
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=ben-cyrillic
10PKG_VERSION:=0.0.1
11PKG_RELEASE:=1
12
13include $(INCLUDE_DIR)/package.mk
14
15define Package/ben-cyrillic
16  SECTION:=utils
17  CATEGORY:=Utilities
18  TITLE:=implements cyrillic input/output for Ben
19  SUBMENU:=Terminal
20  DEPENDS:=+setfont2 +kbd
21endef
22
23define Build/Compile
24endef
25
26define Package/ben-cyrillic/description
27  Collection of files and scripts to support cyrillic
28  input and output for Ben.
29  Use the "Ben" key to switch between input languages.
30endef
31
32define Package/ben-cyrillic/install
33    $(INSTALL_DIR) \
34        $(1)/usr/share/ben-cyrillic \
35        $(1)/usr/sbin \
36        $(1)/etc/init.d
37
38    $(INSTALL_BIN) \
39        $(FILES_DIR)/russian.sh \
40        $(1)/usr/sbin/russian.sh
41
42    $(INSTALL_BIN) \
43        $(FILES_DIR)/$(PKG_NAME).init \
44        $(1)/etc/init.d/$(PKG_NAME)
45
46    $(INSTALL_DATA) \
47        $(FILES_DIR)/{ben_ru_uni.map,ben_ru_uni.trans,un-fuzzy-6x10-font_rus.pnm} \
48        $(1)/usr/share/ben-cyrillic/
49endef
50
51$(eval $(call BuildPackage,ben-cyrillic))
52

Archive Download this file



interactive