development/hexedit: New maintainer + switch to i586.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Barry J. Grundy 2017-09-17 17:11:40 +01:00 committed by David Spencer
parent 4bf23431d1
commit 1909363428
3 changed files with 8 additions and 8 deletions

View file

@ -1,3 +1,3 @@
hexedit shows a file both in ASCII and in hexadecimal. The file can
be a device as the file is read a piece at a time. You can modify the
hexedit shows a file both in ASCII and in hexadecimal. The file can
be a device as the file is read a piece at a time. You can modify the
file and search through it.

View file

@ -31,7 +31,7 @@ TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -42,15 +42,15 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
fi
set -e
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT

View file

@ -6,5 +6,5 @@ MD5SUM="0d2f48610006278cd93359fea9a06d5c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Ryan P.C. McQuen"
EMAIL="ryanpcmcquen@member.fsf.org"
MAINTAINER="Barry J. Grundy"
EMAIL="bgrundy@linuxleo.com"