summaryrefslogtreecommitdiffstats
path: root/source.local/ap/lm_sensors
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2013-04-06 19:43:55 +0200
committer Eric Hameleers <alien@slackware.com>2013-04-06 19:43:55 +0200
commit55bce4decbbdde684c63507f88f4f33694579f4f (patch)
tree409994b26efea8c2a9f65206de616bed4f931d25 /source.local/ap/lm_sensors
parentb100c7c57e8a1363adfffe22f68b6429b9576dd3 (diff)
downloadalienarm-55bce4decbbdde684c63507f88f4f33694579f4f.tar.gz
alienarm-55bce4decbbdde684c63507f88f4f33694579f4f.tar.xz
Update to Alien's ARM which allows XFCE to run on an ARM ChromeBook.
This large update brings Alien's ARM repository almost to the same level of package versions in slackware-current. THese updates were needed to make it possible to start a functional XFCE session on Samsung's ARM ChromeBook (XE303C12).
Diffstat (limited to 'source.local/ap/lm_sensors')
-rw-r--r--source.local/ap/lm_sensors/lm_sensors-3.1.2.tar.bz2.sigbin65 -> 0 bytes
-rw-r--r--source.local/ap/lm_sensors/lm_sensors-3.3.3.tar.bz2.sigbin0 -> 65 bytes
-rwxr-xr-xsource.local/ap/lm_sensors/lm_sensors.SlackBuild16
3 files changed, 7 insertions, 9 deletions
diff --git a/source.local/ap/lm_sensors/lm_sensors-3.1.2.tar.bz2.sig b/source.local/ap/lm_sensors/lm_sensors-3.1.2.tar.bz2.sig
deleted file mode 100644
index b2c0a24..0000000
--- a/source.local/ap/lm_sensors/lm_sensors-3.1.2.tar.bz2.sig
+++ /dev/null
Binary files differ
diff --git a/source.local/ap/lm_sensors/lm_sensors-3.3.3.tar.bz2.sig b/source.local/ap/lm_sensors/lm_sensors-3.3.3.tar.bz2.sig
new file mode 100644
index 0000000..12d89d6
--- /dev/null
+++ b/source.local/ap/lm_sensors/lm_sensors-3.3.3.tar.bz2.sig
Binary files differ
diff --git a/source.local/ap/lm_sensors/lm_sensors.SlackBuild b/source.local/ap/lm_sensors/lm_sensors.SlackBuild
index a3b0093..70fd30e 100755
--- a/source.local/ap/lm_sensors/lm_sensors.SlackBuild
+++ b/source.local/ap/lm_sensors/lm_sensors.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright 2006, 2008, 2009, 2010 Patrick J. Volkerding, Sebeka, MN, USA
+# Copyright 2006, 2008, 2009, 2010, 2012, 2013 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -20,22 +20,20 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-# Modified 2012 by Eric Hameleers <alien at slackware.com> for ARM port.
+# Modified 2013 by Eric Hameleers <alien at slackware.com> for ARM port.
PKGNAM=lm_sensors
-VERSION=${VERSION:-3.1.2}
+VERSION=${VERSION:-3.3.3}
BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
-MARCH=$( uname -m )
if [ -z "$ARCH" ]; then
- case "$MARCH" in
- i?86) export ARCH=i486 ;;
- armv7hl) export ARCH=$MARCH ;;
- arm*) export ARCH=arm ;;
+ 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=$MARCH ;;
+ *) export ARCH=$( uname -m ) ;;
esac
fi