network/gwibber: Miscellaneous cleanups.

This commit is contained in:
Robby Workman 2010-05-20 00:24:54 -05:00
parent 50a90028fc
commit 869e555f42
2 changed files with 12 additions and 4 deletions

View file

@ -2,9 +2,8 @@ Gwibber is an open source microblogging client for GNOME developed
with Python and GTK. It supports Twitter, Jaiku, Identi.ca,
Facebook, Flickr, Digg, and RSS.
Requires: pysetuptools, gnome-python, notify-python, pywebkitgtk,
simplejson, egenix-mx-base, python-distutils-extra, feedparser, pyxdg,
and Mako.
This requires pysetuptools, gnome-python, pywebkitgtk, simplejson,
egenix-mx-base, python-distutils-extra, feedparser, pyxdg, and Mako.
Optional: sexy-python.

View file

@ -7,10 +7,19 @@
PRGNAM=gwibber
VERSION=${VERSION:-1.2.0_bzr346}
SRCVER=$(echo $VERSION | sed 's/\_/~/')
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