desktop/xfce4-volumed: Miscellaneous cleanups.
This commit is contained in:
parent
d35e099bc2
commit
4ac674fecf
|
@ -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
|
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 track for choosing which track to act on. It also provides volume change
|
||||||
and mute toggle notifications if the notification daemon is running.
|
and mute toggle notifications if the notification daemon is running.
|
||||||
|
|
||||||
This requires libnotify.
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Slackware build script for xfce4-volumed
|
# 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
|
# Copyright 2009 Patrick J. Volkerding, Sebeka, MN, USA
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
|
@ -26,10 +26,19 @@
|
||||||
|
|
||||||
PRGNAM=xfce4-volumed
|
PRGNAM=xfce4-volumed
|
||||||
VERSION=0.1.8
|
VERSION=0.1.8
|
||||||
ARCH=${ARCH:-i486}
|
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
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)
|
CWD=$(pwd)
|
||||||
TMP=${TMP:-/tmp/SBo}
|
TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=$TMP/package-$PRGNAM
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then
|
||||||
elif [ "$ARCH" = "x86_64" ]; then
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
SLKCFLAGS="-O2 -fPIC"
|
SLKCFLAGS="-O2 -fPIC"
|
||||||
LIBDIRSUFFIX="64"
|
LIBDIRSUFFIX="64"
|
||||||
|
else
|
||||||
|
SLKCFLAGS="-O2"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
@ -88,4 +100,3 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
cd $PKG
|
cd $PKG
|
||||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue