summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2016-11-15 20:10:41 +0000
committer Eric Hameleers <alien@slackware.com>2016-11-15 20:10:41 +0000
commit14013fd46d0ec405b14f4aab18125ac375642193 (patch)
tree8e5ea7e0795381cb9fbdbff1ea8b5915d4e2a1f9
parent5794b124b83ec5a019405deb04b12c61452428cd (diff)
downloadasb-14013fd46d0ec405b14f4aab18125ac375642193.tar.gz
asb-14013fd46d0ec405b14f4aab18125ac375642193.tar.xz
libstatgrab: updated to 0.91
-rwxr-xr-xlibstatgrab/build/libstatgrab.SlackBuild13
1 files changed, 4 insertions, 9 deletions
diff --git a/libstatgrab/build/libstatgrab.SlackBuild b/libstatgrab/build/libstatgrab.SlackBuild
index 16073bf5..c7ac6e9a 100755
--- a/libstatgrab/build/libstatgrab.SlackBuild
+++ b/libstatgrab/build/libstatgrab.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright 2013 Eric Hameleers, Eindhoven, NL
+# Copyright 2013, 2016 Eric Hameleers, Eindhoven, NL
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -32,6 +32,8 @@
# Changelog:
# 0.17-1: 16/May/2013 by Eric Hameleers <alien@slackware.com>
# * Initial build.
+# 0.91-1: 15/Nov/2016 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh libstatgrab.SlackBuild' to build a Slackware package.
# The package (.tgz) and .txt file as well as build logs are created in /tmp .
@@ -39,12 +41,9 @@
#
# -----------------------------------------------------------------------------
-# Set initial variables:
-
PRGNAM=libstatgrab
-VERSION=${VERSION:-0.17}
+VERSION=${VERSION:-0.91}
BUILD=${BUILD:-1}
-NUMJOBS=${NUMJOBS:" -j4 "}
TAG=${TAG:-alien}
DOCS="AUTHORS COPYING* ChangeLog NEWS PLATFORMS README"
@@ -70,7 +69,6 @@ if [ -z "$ARCH" ]; then
case "$MARCH" in
i?86) export ARCH=i486 ;;
armv7hl) export ARCH=$MARCH ;;
- armv6hl) export ARCH=$MARCH ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$MARCH ;;
@@ -87,9 +85,6 @@ case "$ARCH" in
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
SLKLDFLAGS=""; LIBDIRSUFFIX=""
;;
- armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
- SLKLDFLAGS=""; LIBDIRSUFFIX=""
- ;;
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
;;