mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
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:
parent
dd28ef8964
commit
73d1ee882a
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue