From abdadbe696286629b6a47433d817d1f0975e5abb Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Wed, 6 Jul 2016 00:48:55 -0400 Subject: [PATCH] add package file and man page --- Applications/fview/fuzix-fview.pkg | 8 ++++++ Applications/fview/fview.1 | 39 ++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 Applications/fview/fuzix-fview.pkg create mode 100644 Applications/fview/fview.1 diff --git a/Applications/fview/fuzix-fview.pkg b/Applications/fview/fuzix-fview.pkg new file mode 100644 index 00000000..06cb40d3 --- /dev/null +++ b/Applications/fview/fuzix-fview.pkg @@ -0,0 +1,8 @@ +# fview bmp viewer for Fuzix + +package fview +if-file fview + +f 0755 /usr/bin/fview fview +f 0644 /usr/man/man1/fview.1 fview.1 + diff --git a/Applications/fview/fview.1 b/Applications/fview/fview.1 new file mode 100644 index 00000000..c9ca2131 --- /dev/null +++ b/Applications/fview/fview.1 @@ -0,0 +1,39 @@ +.TH man 1 "FUZIX System Utilities" "FUZIX" \" -*- nroff -*- +.SH NAME +fview \- display Windows .bmp files +.SH SYNOPSIS +.B fview +[\-d] [\-p] file +.SH DESCRIPTION +.B fview displays Windows .bmp (dib) files on FUZIX tty's that support 1 bpp graphics. +.B fview can read 1, 2, 4, 8, 16(5-5-5-1), 24, and 32 bpp source bitmaps. +No (de)compression is supported. Floyd-Steinberg is performed, but no +scaling or offsetting. +.SS OPTIONS +.TP +.I "-d" +Do +.B not dither. +.TP +.I "-p" +Print header information from dib file and exit. +.TP +.SH EXAMPLES +.IP +fview test.bmp +.IP +fview -d test.bmp +.IP +fview -p test.bmp +.SH EXIT STATUS +.TP +.B 0 +Completed successfully. +.TP +.B 1 +An error occured. +.SH BUGS +Tons! +.SH AUTHORS +Brett M. Gordon + -- 2.34.1