mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 11:24:05 +00:00
Move genmanpage.sh to tools
This commit is contained in:
parent
b268381a48
commit
c3f663ec0c
|
@ -7,8 +7,9 @@ cd "$(dirname "$0")"
|
||||||
|
|
||||||
date="$(date +"%B %Y")"
|
date="$(date +"%B %Y")"
|
||||||
version="$(awk '/#define KVZ_VERSION/ { print $3 }' ../src/global.h)"
|
version="$(awk '/#define KVZ_VERSION/ { print $3 }' ../src/global.h)"
|
||||||
|
manpage_file=../doc/kvazaar.1
|
||||||
|
|
||||||
cat <<EOF> kvazaar.1
|
cat <<EOF> $manpage_file
|
||||||
.TH KVAZAAR "1" "$date" "kvazaar v$version" "User Commands"
|
.TH KVAZAAR "1" "$date" "kvazaar v$version" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
kvazaar \- open source HEVC encoder
|
kvazaar \- open source HEVC encoder
|
||||||
|
@ -27,9 +28,8 @@ EOF
|
||||||
s|^ ||g;
|
s|^ ||g;
|
||||||
s|-|\\-|g;
|
s|-|\\-|g;
|
||||||
s|, \\-\\-|\\fR, \\fB\\-\\-|g;' \
|
s|, \\-\\-|\\fR, \\fB\\-\\-|g;' \
|
||||||
>> kvazaar.1
|
>> $manpage_file
|
||||||
|
|
||||||
for s in Slices Wpp Tiles "Parallel processing" "Video Usability Information"; do
|
for s in Slices Wpp Tiles "Parallel processing" "Video Usability Information"; do
|
||||||
sed -i "s|^ ${s}:|.SS \"${s}:\"|g" kvazaar.1
|
sed -i "s|^ ${s}:|.SS \"${s}:\"|g" $manpage_file
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue