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. --- wordgrinder/Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 wordgrinder/Makefile (limited to 'wordgrinder/Makefile') diff --git a/wordgrinder/Makefile b/wordgrinder/Makefile new file mode 100644 index 0000000..84b241f --- /dev/null +++ b/wordgrinder/Makefile @@ -0,0 +1,41 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=wordgrinder +PKG_VERSION:=0.3.3 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=@SF/$(PKG_NAME) +PKG_MD5SUM:=1ae3bcf2fc4ee027bdd9518a73733505 + +include $(INCLUDE_DIR)/package.mk + +define Package/wordgrinder + SECTION:=utils + CATEGORY:=Utilities + TITLE:=A word processor for processing words + URL:=http://wordgrinder.sourceforge.net/ + SUBMENU:=Editors + DEPENDS:=+libncursesw lua luafilesystem +endef + +define Package/wordgrinder/description + WordGrinder is a word processor for processing words. It is not WYSIWYG. It is not point and click. It is not a desktop publisher. It is not a text editor. It is not do fonts and it barely does styles. What it does do is words. It's designed for writing text. It gets out of your way and lets you type. +endef + +define Build/Configure +endef + +define Build/Compile + (cd $(PKG_BUILD_DIR);\ + STAGING_DIR="$(STAGING_DIR)"\ + TARGET_CC="$(TARGET_CC)"\ + ./pm);$ +endef + +define Package/wordgrinder/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/wordgrinder $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,wordgrinder)) -- cgit v1.2.3