mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
libraries/OpenBLAS: Added (BLAS library).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b173ef7ec4
commit
f0e9be9d94
4 changed files with 98 additions and 0 deletions
68
libraries/OpenBLAS/OpenBLAS.SlackBuild
Normal file
68
libraries/OpenBLAS/OpenBLAS.SlackBuild
Normal file
|
@ -0,0 +1,68 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Slackware build script for OpenBLAS
|
||||
# Written by Mário Antunes (mariolpantunes@gmail.com)
|
||||
|
||||
PRGNAM="OpenBLAS"
|
||||
VERSION=${VERSION:-0.2.11}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/v$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
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 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
make NO_STATIC=1
|
||||
make PREFIX=$PKG/usr/ install
|
||||
|
||||
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
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README.md $PKG/usr/doc/$PRGNAM-$VERSION/REAME
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
## A little hack to fix the lib path
|
||||
if [ "$LIBDIRSUFFIX" = "64" ]; then
|
||||
mv -v $PKG/usr/lib/ $PKG/usr/lib$LIBDIRSUFFIX/
|
||||
fi
|
||||
|
||||
rm -Rf $PKG/usr/bin
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
libraries/OpenBLAS/OpenBLAS.info
Normal file
10
libraries/OpenBLAS/OpenBLAS.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="OpenBLAS"
|
||||
VERSION="0.2.11"
|
||||
HOMEPAGE="https://github.com/xianyi/OpenBLAS"
|
||||
DOWNLOAD="https://github.com/xianyi/OpenBLAS/archive/v0.2.11.tar.gz"
|
||||
MD5SUM="c456f3c5e84c3ab69ef89b22e616627a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Mario Antunes"
|
||||
EMAIL="mariolpantunes@gmail.com"
|
1
libraries/OpenBLAS/README
Normal file
1
libraries/OpenBLAS/README
Normal file
|
@ -0,0 +1 @@
|
|||
OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.
|
19
libraries/OpenBLAS/slack-desc
Normal file
19
libraries/OpenBLAS/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
OpenBLAS: OpenBLAS (BLAS library)
|
||||
OpenBLAS:
|
||||
OpenBLAS: OpenBLAS is an optimized BLAS library based on
|
||||
OpenBLAS: GotoBLAS2 1.13 BSD version.
|
||||
OpenBLAS:
|
||||
OpenBLAS:
|
||||
OpenBLAS:
|
||||
OpenBLAS:
|
||||
OpenBLAS:
|
||||
OpenBLAS:
|
||||
OpenBLAS:
|
Loading…
Reference in a new issue