OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| Source at commit 84793327bc9afc13c06ba0e60df843ddd9c8f4c2 created 1 year 9 months ago. By bartbes, Wordgrinder: Builds, marked broken until upstream accepts ncurses patch | |
|---|---|
| 1 | include $(TOPDIR)/rules.mk |
| 2 | |
| 3 | PKG_NAME:=wordgrinder |
| 4 | PKG_VERSION:=0.3.3 |
| 5 | PKG_RELEASE:=1 |
| 6 | |
| 7 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |
| 8 | PKG_SOURCE_URL:=@SF/$(PKG_NAME) |
| 9 | PKG_MD5SUM:=1ae3bcf2fc4ee027bdd9518a73733505 |
| 10 | |
| 11 | include $(INCLUDE_DIR)/package.mk |
| 12 | |
| 13 | define 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 BROKEN |
| 20 | endef |
| 21 | |
| 22 | define 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. |
| 24 | endef |
| 25 | |
| 26 | define Build/Configure |
| 27 | endef |
| 28 | |
| 29 | define Build/Compile |
| 30 | (cd $(PKG_BUILD_DIR);\ |
| 31 | STAGING_DIR="$(STAGING_DIR)"\ |
| 32 | TARGET_CC="$(TARGET_CC)"\ |
| 33 | ./pm);$ |
| 34 | endef |
| 35 | |
| 36 | define Package/wordgrinder/install |
| 37 | $(INSTALL_DIR) $(1)/usr/bin |
| 38 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/wordgrinder $(1)/usr/bin/ |
| 39 | endef |
| 40 | |
| 41 | $(eval $(call BuildPackage,wordgrinder)) |
| 42 | |
