1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-29 00:27:40 +03:00
openwrt-packages/wordgrinder/Makefile
Alan Post 59d9e88c98 Remove BROKEN tag: wordgrinder is working with latest image.
I've updated my NanoNote to the latest source, and having fixed the
patch for this package, wordgrinder is now working.

This program was crashing on the ~2010-06-17 image, delivered with
my NanoNote.
2010-10-03 16:07:01 -06:00

42 lines
1.1 KiB
Makefile

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))