summaryrefslogtreecommitdiffstats
path: root/desktop/pidgin-libnotify
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2010-05-19 14:23:03 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-21 01:27:19 -0500
commit3096f945a567d1038cce0d9f4654f91ecb9ee1a3 (patch)
treeddb8ea9c878a383e9ca71f026d278f4f4eae4d78 /desktop/pidgin-libnotify
parentca177716889eccd34f14e1b1de2cf5cdbb5cc8ca (diff)
downloadslackbuilds-3096f945a567d1038cce0d9f4654f91ecb9ee1a3.tar.gz
slackbuilds-3096f945a567d1038cce0d9f4654f91ecb9ee1a3.tar.xz
desktop/pidgin-libnotify: Miscellaneous cleanups.
Diffstat (limited to 'desktop/pidgin-libnotify')
-rw-r--r--desktop/pidgin-libnotify/README2
-rw-r--r--desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild14
2 files changed, 13 insertions, 3 deletions
diff --git a/desktop/pidgin-libnotify/README b/desktop/pidgin-libnotify/README
index a0fd294424..7c69604c32 100644
--- a/desktop/pidgin-libnotify/README
+++ b/desktop/pidgin-libnotify/README
@@ -2,5 +2,3 @@ This plugin adds a libnotify interface to pidgin, enabling popups much like
guifications. It has some configuration options, to show popups when a buddy
signs on, on new messages and on new conversations only.
Don't forget to enable the plugin in Tools->Plugins.
-
-Requires: libnotify, avalaible at SlackBuilds.org.
diff --git a/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild b/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild
index d8300e4051..57f7d51feb 100644
--- a/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild
+++ b/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=pidgin-libnotify
VERSION=0.14
-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