Root/wordgrinder/Makefile

1include $(TOPDIR)/rules.mk
2
3PKG_NAME:=wordgrinder
4PKG_VERSION:=0.3.3
5PKG_RELEASE:=1
6
7PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
8PKG_SOURCE_URL:=@SF/$(PKG_NAME)
9PKG_MD5SUM:=1ae3bcf2fc4ee027bdd9518a73733505
10
11include $(INCLUDE_DIR)/package.mk
12
13define Package/wordgrinder
14    SECTION:=utils
15    CATEGORY:=Utilities
16    TITLE:=A word processor for processing words
17    URL:=http://wordgrinder.sourceforge.net/
18    SUBMENU:=Editors
19    DEPENDS:=+libncursesw lua luafilesystem
20endef
21
22define Package/wordgrinder/description
23    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.
24endef
25
26define Build/Configure
27endef
28
29define Build/Compile
30    (cd $(PKG_BUILD_DIR);\
31    STAGING_DIR="$(STAGING_DIR)"\
32    TARGET_CC="$(TARGET_CC)"\
33    ./pm);$
34endef
35
36define Package/wordgrinder/install
37    $(INSTALL_DIR) $(1)/usr/bin
38    $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/wordgrinder $(1)/usr/bin/
39endef
40
41$(eval $(call BuildPackage,wordgrinder))
42

Archive Download this file



interactive