summaryrefslogtreecommitdiffstats
path: root/desktop/thunar-shares-plugin
diff options
context:
space:
mode:
author Robby Workman2010-05-20 21:35:56 +0200
committer Robby Workman2010-05-21 08:48:43 +0200
commit72bc3b93cc44811d9a2a4646e0bf4fe2c9b49845 (patch)
tree82c0b7de5af27d8d6b8e5612b9447064cc044101 /desktop/thunar-shares-plugin
parentc3e3a9ced9e4415b79b1f375268bfe451eb5d6dc (diff)
downloadslackbuilds-72bc3b93cc44811d9a2a4646e0bf4fe2c9b49845.tar.gz
desktop/thunar-shares-plugin: Miscellaneous cleanups.
Diffstat (limited to 'desktop/thunar-shares-plugin')
-rw-r--r--desktop/thunar-shares-plugin/slack-desc4
-rw-r--r--desktop/thunar-shares-plugin/thunar-shares-plugin.SlackBuild16
2 files changed, 16 insertions, 4 deletions
diff --git a/desktop/thunar-shares-plugin/slack-desc b/desktop/thunar-shares-plugin/slack-desc
index 312bd0ebae..edd42e3206 100644
--- a/desktop/thunar-shares-plugin/slack-desc
+++ b/desktop/thunar-shares-plugin/slack-desc
@@ -12,8 +12,8 @@ thunar-shares-plugin: This is a Thunar file manager extension to share files usi
thunar-shares-plugin:
thunar-shares-plugin: http://goodies.xfce.org/projects/thunar-plugins/thunar-shares-plugin
thunar-shares-plugin:
-thunar-shares-plugin:
thunar-shares-plugin:
-thunar-shares-plugin:
+thunar-shares-plugin:
+thunar-shares-plugin:
thunar-shares-plugin:
thunar-shares-plugin:
diff --git a/desktop/thunar-shares-plugin/thunar-shares-plugin.SlackBuild b/desktop/thunar-shares-plugin/thunar-shares-plugin.SlackBuild
index 028b1a9851..cb95a50932 100644
--- a/desktop/thunar-shares-plugin/thunar-shares-plugin.SlackBuild
+++ b/desktop/thunar-shares-plugin/thunar-shares-plugin.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for thunar-shares-plugin
-# Copyright 2008,2009 Robby Workman, Northport, Alabama, USA
+# Copyright 2008,2009,2010 Robby Workman, Northport, Alabama, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -24,10 +24,19 @@
PRGNAM=thunar-shares-plugin
VERSION=0.2.0
-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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e