summaryrefslogtreecommitdiff
path: root/wordgrinder/Makefile
diff options
context:
space:
mode:
authorDavid Kühling <dvdkhlng@gmx.de>2011-01-02 15:19:00 +0100
committerDavid Kühling <dvdkhlng@gmx.de>2011-01-02 15:19:00 +0100
commit9aaeb4623d3ff5746e665bc17914eefd292b7dcd (patch)
tree370db60ffdc2ef840b7d1124d5a392f93bba3c9d /wordgrinder/Makefile
downloadqipackages-fork-9aaeb4623d3ff5746e665bc17914eefd292b7dcd.tar.gz
New OpenWrt package for GNU Octave. Experimental/probably still broken.grafted
Work in progress. Committing it as compilation seems to take forever. Not sure whether I can finish this within a few days.
Diffstat (limited to 'wordgrinder/Makefile')
-rw-r--r--wordgrinder/Makefile41
1 files changed, 41 insertions, 0 deletions
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))