summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Andrew Clemons <andrew.clemons@gmail.com>2018-01-09 20:59:54 +1300
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2018-01-20 07:01:20 +0700
commit7110074aabdb851eea82e31d43aab40d656a5a9d (patch)
tree62355d27b752bb8fa44804d387fce5651584f7b8
parentbd48040e2c38d180791db193941a728af90c53bc (diff)
downloadslackbuilds-7110074aabdb851eea82e31d43aab40d656a5a9d.tar.gz
slackbuilds-7110074aabdb851eea82e31d43aab40d656a5a9d.tar.xz
system/fwupdate: Updated for version 10.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
-rw-r--r--system/fwupdate/fwupdate.SlackBuild10
-rw-r--r--system/fwupdate/fwupdate.info6
2 files changed, 7 insertions, 9 deletions
diff --git a/system/fwupdate/fwupdate.SlackBuild b/system/fwupdate/fwupdate.SlackBuild
index 50a421c977..3e48ff38c5 100644
--- a/system/fwupdate/fwupdate.SlackBuild
+++ b/system/fwupdate/fwupdate.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for fwupdate
-# Copyright 2017 Andrew Clemons, Wellington New Zealand
+# Copyright 2017-2018 Andrew Clemons, Wellington New Zealand
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=fwupdate
-VERSION=${VERSION:-9}
+VERSION=${VERSION:-10}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -43,15 +43,12 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
- EFIARCH=ia32
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
- EFIARCH=ia32
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
- EFIARCH=x64
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
@@ -72,7 +69,8 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-make \
+# randomly fails with more than one thread
+make -j1 \
EFIDIR=Slackware \
libdir=/usr/lib$LIBDIRSUFFIX \
mandir=/usr/man \
diff --git a/system/fwupdate/fwupdate.info b/system/fwupdate/fwupdate.info
index a7eab8a8ea..b0e686becd 100644
--- a/system/fwupdate/fwupdate.info
+++ b/system/fwupdate/fwupdate.info
@@ -1,8 +1,8 @@
PRGNAM="fwupdate"
-VERSION="9"
+VERSION="10"
HOMEPAGE="https://github.com/rhboot/fwupdate"
-DOWNLOAD="https://github.com/rhboot/fwupdate/archive/9/fwupdate-9.tar.gz"
-MD5SUM="0ce656b18a60256a7cf9fa42fd5d99de"
+DOWNLOAD="https://github.com/rhboot/fwupdate/archive/10/fwupdate-10.tar.gz"
+MD5SUM="9724a9848b29d935e135a7bec7fa7349"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="efivar libsmbios"