audio/mktoc: Remove template comment.

Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2021-11-26 16:08:01 -05:00 committed by Willy Sudiarto Raharjo
parent dd28ef8964
commit 73d1ee882a
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 5 additions and 3 deletions

View file

@ -16,3 +16,7 @@ Features:
* Fuzzy file name logic can correct common file name spelling
variations.
* Workaround known TOC file parsing bugs in cdrdao.
Note: mktoc can't handle .wav files that use floating point samples.
You can convert such wav files to 16-bit integer samples:
$ sox input.wav -b16 output.wav

View file

@ -7,6 +7,7 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20211126 bkw: add README note about floating point samples.
# 20180111 bkw:
# - take over maintenance
# - BUILD=2
@ -33,9 +34,6 @@ if [ -z "$ARCH" ]; then
esac
fi
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0