From 9aaeb4623d3ff5746e665bc17914eefd292b7dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sun, 2 Jan 2011 15:19:00 +0100 Subject: New OpenWrt package for GNU Octave. Experimental/probably still broken. Work in progress. Committing it as compilation seems to take forever. Not sure whether I can finish this within a few days. --- ben-cyrillic/Makefile | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 ben-cyrillic/Makefile (limited to 'ben-cyrillic/Makefile') diff --git a/ben-cyrillic/Makefile b/ben-cyrillic/Makefile new file mode 100644 index 0000000..ec72a76 --- /dev/null +++ b/ben-cyrillic/Makefile @@ -0,0 +1,61 @@ +# +# OpenWrt +# +# This is free software, licensed under the GNU General Public License v2. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=ben-cyrillic +PKG_VERSION:=0.0.1 +PKG_RELEASE:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/ben-cyrillic + SECTION:=utils + CATEGORY:=Utilities + TITLE:=implements cyrillic input/output for Ben + SUBMENU:=Terminal + DEPENDS:=+setfont2 +kbd +endef + +define Build/Compile +endef + +define Package/ben-cyrillic/description + Collection of files and scripts to support cyrillic + input and output for Ben. + Use the "Ben" key to switch between input languages. +endef + +define Package/ben-cyrillic/install + $(INSTALL_DIR) \ + $(1)/usr/share/ben-cyrillic \ + $(1)/usr/sbin \ + $(1)/etc/init.d \ + $(1)/usr/share/gmenu2x/sections/applications \ + $(1)/usr/bin + + $(INSTALL_BIN) \ + $(FILES_DIR)/russian.sh \ + $(1)/usr/sbin/russian.sh + + $(INSTALL_BIN) \ + $(FILES_DIR)/$(PKG_NAME).init \ + $(1)/etc/init.d/$(PKG_NAME) + + $(INSTALL_BIN) \ + $(FILES_DIR)/ben-ash-rus \ + $(1)/usr/bin/ + + $(INSTALL_DATA) \ + $(FILES_DIR)/{ben_ru_uni.map,ben_ru_uni.trans,un-fuzzy-6x10-font_rus.pnm} \ + $(1)/usr/share/ben-cyrillic/ + + $(INSTALL_DATA) \ + $(FILES_DIR)/ash-rus \ + $(1)/usr/share/gmenu2x/sections/applications/ +endef + +$(eval $(call BuildPackage,ben-cyrillic)) -- cgit v1.2.3