audio/wavbreaker: Updated for version 0.16.

Signed-off-by: bedlam <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Andrew Strong 2023-03-03 07:43:57 +00:00 committed by Willy Sudiarto Raharjo
parent 204a86d9f7
commit af81e5b158
No known key found for this signature in database
GPG key ID: 3F617144D7238786
4 changed files with 23 additions and 23 deletions

View file

@ -1,6 +1,9 @@
wavbreaker is an open source WAV and MP3 file splitter.
wavbreaker is an open source WAV, MP2 and MP3 file splitter.
wavbreaker is a GTK gui application which takes WAV or MP3 files and
breaks them up into multiple sections. For MP3 manipulation wavbreaker
uses libmpg123. It also has command line tools which will merge WAV
files (wavmerge) and display format information for WAV files (wavinfo).
It is a GTK3 gui application which takes WAV, MP2 and MP3 files and
breaks them up into multiple sections. For MP2 and MP3 manipulation
wavbreaker uses libmpg123.
There is also a command line tool: 'wavcli' which has absorbed the
functions of tools seen in previous releases of wavbreaker: 'wavinfo',
'wavmerge' and 'wavgen'. Usage can be seen by running: 'wavecli --help'.

View file

@ -6,13 +6,13 @@
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
wavbreaker: wavbreaker (a WAV and MP3 file splitter)
wavbreaker:
wavbreaker: This application takes WAV or MP3 files and breaks them into multiple
wavbreaker: sections. It also has command line tools which will merge WAV files
wavbreaker: (wavmerge) and display format information for WAV files (wavinfo).
wavbreaker:
wavbreaker: wavbreaker (a WAV, MP2 and MP3 file splitter)
wavbreaker:
wavbreaker: This GUI application takes WAV, MP2 and MP3 files and breaks them
wavbreaker: into multiple sections. It also has a command line tool which will
wavbreaker: list track breaks, analyze files, split audio files, generate example
wavbreaker: audio files, print audio format information and merge multiple WAV
wavbreaker: files into a single file.
wavbreaker:
wavbreaker: https://wavbreaker.sourceforge.io/
wavbreaker:

View file

@ -2,8 +2,8 @@
# Slackware build script for wavbreaker
# Copyright 2013, Josiah Boothby, Seattle
# Copyright 2022 Andrew Strong, Blue Mountains
# Copyright 2013 - 2021 Josiah Boothby, Seattle
# Copyright 2022 - 2023 Andrew Strong, Blue Mountains
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -26,7 +26,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=wavbreaker
VERSION=${VERSION:-0.13}
VERSION=${VERSION:-0.16}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -39,9 +39,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
@ -84,7 +81,7 @@ mkdir build
cd build
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
meson .. \
meson setup .. \
--buildtype=release \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--mandir=/usr/man \
@ -102,7 +99,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS CONTRIBUTORS COPYING README.md $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS CONTRIBUTORS COPYING *.md $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,8 +1,8 @@
PRGNAM="wavbreaker"
VERSION="0.13"
HOMEPAGE="http://wavbreaker.sourceforge.net"
DOWNLOAD="https://github.com/thp/wavbreaker/archive/0.13/wavbreaker-0.13.tar.gz"
MD5SUM="cc32a1afd0b52692a81ce7895b5ee767"
VERSION="0.16"
HOMEPAGE="https://wavbreaker.sourceforge.io/"
DOWNLOAD="https://github.com/thp/wavbreaker/archive/0.16/wavbreaker-0.16.tar.gz"
MD5SUM="a65801e855927a30cd501aa5ebc2dd5d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""