mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/gwibber: Miscellaneous cleanups.
This commit is contained in:
parent
50a90028fc
commit
869e555f42
2 changed files with 12 additions and 4 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue