2016-02-04 05:41:18 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
LANG=C
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
|
|
|
date="$(date +"%B %Y")"
|
|
|
|
version="$(awk '/#define KVZ_VERSION/ { print $3 }' ../src/global.h)"
|
2016-03-01 13:30:24 +00:00
|
|
|
manpage_file=../doc/kvazaar.1
|
2016-02-04 05:41:18 +00:00
|
|
|
|
2016-03-01 13:30:24 +00:00
|
|
|
cat <<EOF> $manpage_file
|
2016-02-04 05:41:18 +00:00
|
|
|
.TH KVAZAAR "1" "$date" "kvazaar v$version" "User Commands"
|
|
|
|
.SH NAME
|
|
|
|
kvazaar \- open source HEVC encoder
|
|
|
|
.SH SYNOPSIS
|
|
|
|
\fBkvazaar \fR\-i <input> \-\-input\-res <width>x<height> \-o <output>
|
|
|
|
.SH DESCRIPTION
|
|
|
|
EOF
|
|
|
|
|
2016-03-01 13:20:11 +00:00
|
|
|
../src/kvazaar --help 2>&1 | tail -n+5 | head -n-4 | \
|
2016-02-05 14:16:18 +00:00
|
|
|
sed 's| : |\n|g;
|
|
|
|
s| :$||g;
|
2016-02-04 05:41:18 +00:00
|
|
|
s|^ --|.TP\n\\fB--|g;
|
2016-11-04 13:30:58 +00:00
|
|
|
s|^ -|.TP\n\\fB-|g;
|
|
|
|
s|^ ||g;
|
2016-02-04 05:41:18 +00:00
|
|
|
s|-|\\-|g;
|
|
|
|
s|, \\-\\-|\\fR, \\fB\\-\\-|g;' \
|
2016-03-01 13:30:24 +00:00
|
|
|
>> $manpage_file
|
2016-02-04 05:41:18 +00:00
|
|
|
|
2016-10-26 23:45:24 +00:00
|
|
|
for s in Required Presets Input Options "Video structure" "Compression tools" "Parallel processing" "Video Usability Information"; do
|
|
|
|
sed -i "s|^${s}:|.SS \"${s}:\"|g" $manpage_file
|
2016-02-04 05:41:18 +00:00
|
|
|
done
|