diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-09-11 14:38:47 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-09-11 14:38:47 +0900 |
| commit | 884c8093d63402a1ad0b502244b791e3c6782be3 (patch) | |
| tree | a600d4ab0d431a2bdfe4c15b70df43c14fbd8dd0 /debian/transcode/transcode-1.1.7/docs/make-module-man.sed | |
| parent | 14e1aa2006796f147f3f4811fb908a6b01e79253 (diff) | |
| download | extra-dependencies-884c8093d63402a1ad0b502244b791e3c6782be3.tar.gz extra-dependencies-884c8093d63402a1ad0b502244b791e3c6782be3.zip | |
Added debian extra dependency packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/transcode/transcode-1.1.7/docs/make-module-man.sed')
| -rw-r--r-- | debian/transcode/transcode-1.1.7/docs/make-module-man.sed | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/debian/transcode/transcode-1.1.7/docs/make-module-man.sed b/debian/transcode/transcode-1.1.7/docs/make-module-man.sed new file mode 100644 index 00000000..cfcfc547 --- /dev/null +++ b/debian/transcode/transcode-1.1.7/docs/make-module-man.sed @@ -0,0 +1,60 @@ +#!/bin/sed -f +# sed -f make-modules-man < export-mods.txt | tbl | groff -S -Wall -mtty-char -mandoc -Tascii | col | less + +/^ *$/d + +# 1i\ +# .TH transcode 1 "1st November 2003" "transcode(1)"\ +# .SH NAME\ +# transcode \- LINUX video stream processing tool\ +# +# start the work +/^M: /{ +s/^M: [ei][xm]port_\([^.]*\)\.cp*/.TP 4\ +\\fB\1\\fP/ +N +s/\nD: / \\- / +s/$/\ +.br/ +} + +/^C: /{ +/none/s/.*/This module has no compile-time dependencies./ +/This/!{ + s/C: // + s/, / and /g + s/^/At compile-time / + s/$/ must be available./ + } +} + +/^R: /{ +/none/s/.*/This module has no run-time dependencies./ +/This/!{ + s/R: // + s/, / and /g + s/^/At run-time / + s/$/ must be present./ + } +} + +/^S: /{ +s/S: -/Support for this module is poor./ +s/S: o/Support for this module is fair./ +s/S: +/Support for this module is good./ +} + +# enhance this to allow multiple lines +/^I: /{ +s/I: /.RS 8\ +/ +s/$/\ +.br/ +} + +/^P: /{ +s/^P: /Supported processing formats: / +s/$/\ +.RE/ +} + |
