# HG changeset patch # User Hans-G?nter Theisgen # Date 1655561592 -3600 # Node ID d5fd4a4c1a763394d5b94ba46b6c4245518b6b37 # Parent 92b662c0aa2ddddbc71f7a9a51273e183c01206c created recipe for wordgrinder diff -r 92b662c0aa2d -r d5fd4a4c1a76 wordgrinder/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wordgrinder/description.txt Sat Jun 18 15:13:12 2022 +0100 @@ -0,0 +1,14 @@ +WordGrinder is a Unicode-aware character cell word processor +that runs in a terminal. +It is designed to get the hell out of your way and let you get +some work done. + +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 does 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. diff -r 92b662c0aa2d -r d5fd4a4c1a76 wordgrinder/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wordgrinder/receipt Sat Jun 18 15:13:12 2022 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="wordgrinder" +VERSION="0.8" +CATEGORY="office" +SHORT_DESC="A simple Unicode-aware word processor that runs on the console." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://cowlark.com/wordgrinder/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/davidgiven/$PACKAGE/archive/$VERSION.tar.gz" + +DEPENDS="freetype lua ncursesw xorg-libXft" +BUILD_DEPENDS="freetype-dev lua-dev ncursesw-dev ninja xorg-libXft-dev" + +# Rules to configure and make the package. +compile_rules() +{ + make install \ + PREFIX=/usr \ + DESTDIR=$DESTDIR \ + LUA_PACKAGE=lua +} + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders bin + cook_copy_folders mime-info +}