academic/muscle: Updated for version 3.8.1551.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Petar Petrov 2019-08-03 07:06:30 +07:00 committed by Willy Sudiarto Raharjo
parent 1849f02ee5
commit ac670e99f5
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 22 additions and 19 deletions

View file

@ -2,7 +2,7 @@
# Slackware build script for muscle
# Copyright 2011-2016 Petar Petrov slackalaxy@gmail.com
# Copyright 2011-2019 Petar Petrov slackalaxy@gmail.com
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,13 +23,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=muscle
VERSION=${VERSION:-3.8.31}
VERSION=${VERSION:-3.8.1551}
BUILD=${BUILD:-1}
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
@ -40,8 +40,8 @@ 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"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -59,22 +59,25 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf ${PRGNAM}${VERSION}
tar xvf $CWD/${PRGNAM}${VERSION}_src.tar.gz
cd ${PRGNAM}${VERSION}
rm -rf ${PRGNAM}-${VERSION}
mkdir -p ${PRGNAM}-${VERSION}
cd ${PRGNAM}-${VERSION}
tar xvf $CWD/${PRGNAM}_src_${VERSION}.tar.gz
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
cd ./src
# Use our CFLAGS
sed -i "/^CFLAGS/s/=/+=/" Makefile
ENV_GCC_OPTS="$SLKCFLAGS" \
make
CFLAGS="$SLKCFLAGS" \
make
install -D -m755 muscle $PKG/usr/bin/muscle
install -D -m755 $PRGNAM $PKG/usr/bin/$PRGNAM
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true

View file

@ -1,8 +1,8 @@
PRGNAM="muscle"
VERSION="3.8.31"
VERSION="3.8.1551"
HOMEPAGE="http://www.drive5.com/muscle/"
DOWNLOAD="http://www.drive5.com/muscle/downloads3.8.31/muscle3.8.31_src.tar.gz"
MD5SUM="f767f00fd15f0c5db944d41936779e10"
DOWNLOAD="http://www.drive5.com/muscle/muscle_src_3.8.1551.tar.gz"
MD5SUM="1b7c9661f275a82d3cf708f923736bf8"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""