desktop/xfce4-volumed: Miscellaneous cleanups.

This commit is contained in:
Robby Workman 2010-05-19 13:45:42 -05:00
parent d35e099bc2
commit 4ac674fecf
2 changed files with 14 additions and 5 deletions

View File

@ -4,5 +4,3 @@ This daemon is responsible of making the volume up/down and mute keys of
the keyboard work automatically, and uses the XFCE 4 mixer's defined card
and track for choosing which track to act on. It also provides volume change
and mute toggle notifications if the notification daemon is running.
This requires libnotify.

View File

@ -2,7 +2,7 @@
# Slackware build script for xfce4-volumed
# Copyright 2006-2009 Robby Workman Northport, Alabama, USA
# Copyright 2006,2007,2008,2009,2010 Robby Workman Northport, Alabama, USA
# Copyright 2009 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
@ -26,10 +26,19 @@
PRGNAM=xfce4-volumed
VERSION=0.1.8
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i486 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e
@ -88,4 +100,3 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}