mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
audio/vorbisgain: Script cleanup + updated maintainer information
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
This commit is contained in:
parent
e9cd5291a9
commit
46e901c28c
3 changed files with 5 additions and 10 deletions
|
@ -8,7 +8,7 @@
|
|||
|-----handy-ruler---------------------------------------------------|
|
||||
vorbisgain: vorbisgain (volume gain adjuster for ogg vorbis)
|
||||
vorbisgain:
|
||||
vorbisgain: Vorbisgain enables you to adjust the volume of your files using the
|
||||
vorbisgain: Vorbisgain enables you to adjust the volume of your files using the
|
||||
vorbisgain: replaygain-algorithm. This way only tags are written to your files;
|
||||
vorbisgain: they don't get modified themselves.
|
||||
vorbisgain: Via these tags, some audio-players are able to change the volume of
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for vorbisgain
|
||||
|
||||
# Copyright 2008 Heinz Wiesinger <hmwiesinger@gmx.at>
|
||||
# Copyright 2008-2011 Heinz Wiesinger, Amsterdam, The Netherlands
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -27,12 +27,10 @@ VERSION=0.37
|
|||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -79,10 +77,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING NEWS README \
|
||||
|
|
|
@ -5,6 +5,6 @@ DOWNLOAD="http://sjeng.org/ftp/vorbis/vorbisgain-0.37.tar.gz"
|
|||
MD5SUM="850b05a7b2b0ee67edb5a27b8c6ac3a2"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="ppr:kut"
|
||||
EMAIL="HMWiesinger@gmx.at"
|
||||
MAINTAINER="Heinz Wiesinger"
|
||||
EMAIL="pprkut@liwjatan.at"
|
||||
APPROVED="Michiel"
|
||||
|
|
Loading…
Reference in a new issue