wok rev 25096
created recipe for wordgrinder
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jun 18 15:13:12 2022 +0100 (2022-06-18) |
parents | 92b662c0aa2d |
children | d358ff3c7097 |
files | wordgrinder/description.txt wordgrinder/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/wordgrinder/description.txt Sat Jun 18 15:13:12 2022 +0100 1.3 @@ -0,0 +1,14 @@ 1.4 +WordGrinder is a Unicode-aware character cell word processor 1.5 +that runs in a terminal. 1.6 +It is designed to get the hell out of your way and let you get 1.7 +some work done. 1.8 + 1.9 +WordGrinder is a word processor for processing words. 1.10 +It is not WYSIWYG. 1.11 +It is not point and click. 1.12 +It is not a desktop publisher. 1.13 +It is not a text editor. 1.14 +It does not do fonts and it barely does styles. 1.15 +What it does do is words. 1.16 +It's designed for writing text. 1.17 +It gets out of your way and lets you type.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/wordgrinder/receipt Sat Jun 18 15:13:12 2022 +0100 2.3 @@ -0,0 +1,32 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="wordgrinder" 2.7 +VERSION="0.8" 2.8 +CATEGORY="office" 2.9 +SHORT_DESC="A simple Unicode-aware word processor that runs on the console." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="MIT" 2.12 +WEB_SITE="https://cowlark.com/wordgrinder/" 2.13 + 2.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.15 +WGET_URL="https://github.com/davidgiven/$PACKAGE/archive/$VERSION.tar.gz" 2.16 + 2.17 +DEPENDS="freetype lua ncursesw xorg-libXft" 2.18 +BUILD_DEPENDS="freetype-dev lua-dev ncursesw-dev ninja xorg-libXft-dev" 2.19 + 2.20 +# Rules to configure and make the package. 2.21 +compile_rules() 2.22 +{ 2.23 + make install \ 2.24 + PREFIX=/usr \ 2.25 + DESTDIR=$DESTDIR \ 2.26 + LUA_PACKAGE=lua 2.27 +} 2.28 + 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + cook_copy_folders bin 2.34 + cook_copy_folders mime-info 2.35 +}