academic/cblas: Added to 12.2 repository

This commit is contained in:
Eugene Suter 2010-05-12 23:27:36 +02:00 committed by Robby Workman
parent 20f8c8d186
commit 16ca523fd1
4 changed files with 121 additions and 0 deletions

5
academic/cblas/README Normal file
View File

@ -0,0 +1,5 @@
CBLAS is a collection of wrappers that provide a C interface to the FORTRAN
BLAS library. The interface can be consulted by opening /usr/include/cblas.h
An existing FORTRAN BLAS library must be installed if you intend to build this
package. The reference BLAS from netlib is available at SlackBuilds.org.

View File

@ -0,0 +1,89 @@
#!/bin/sh
# Slackware build script for CBLAS
# Written by Eugene Suter <easuter@gmail.com>
PRGNAM=cblas
VERSION=${VERSION:-20030223}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
set -e # Exit on most errors
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf CBLAS
tar xvf $CWD/$PRGNAM.tgz
cd CBLAS
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -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 {} \;
# Manually configure and build
cp Makefile.LINUX Makefile.in
make CBDIR=$(pwd) \
CBLIBDIR=$(pwd)/lib \
CBLIB=$(pwd)/lib/libcblas.a \
BLLIB="/usr/lib${LIBDIRSUFFIX}/libblas.a" \
CFLAGS="$SLKCFLAGS -DADD_" \
FFLAGS="$SLKCFLAGS -DADD_" \
FC="gfortran" \
RANLIB=ranlib \
alllib
cd lib
ar -x lib$PRGNAM.a
gcc -fPIC -lgfortran -shared *.o -Wl,-soname,$PRGNAM.so.$VERSION \
-o lib$PRGNAM.so.$VERSION
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}
cp lib$PRGNAM.a $PKG/usr/lib${LIBDIRSUFFIX}
cp lib$PRGNAM.so.$VERSION $PKG/usr/lib${LIBDIRSUFFIX}
( cd $PKG/usr/lib${LIBDIRSUFFIX}
ln -s lib$PRGNAM.so.$VERSION lib$PRGNAM.so
)
cd ..
mkdir -p $PKG/usr/include
cp src/cblas.h $PKG/usr/include
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
README cblas_example1.c cblas_example2.c \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View File

@ -0,0 +1,8 @@
PRGNAM="cblas"
VERSION="20030223"
HOMEPAGE="http://netlib.org/blas/"
DOWNLOAD="http://netlib.org/blas/blast-forum/cblas.tgz"
MD5SUM="716329646ac933592a7cbdbeae9d3d06"
MAINTAINER="Eugene Suter"
EMAIL="easuter@gmail.com"
APPROVED="rworkman"

19
academic/cblas/slack-desc Normal file
View 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 ':'.
|-----handy-ruler-------------------------------------------------------|
cblas: CBLAS (C interface to BLAS)
cblas:
cblas: CBLAS is a collection of wrappers that provide a C interface
cblas: to the FORTRAN BLAS library.
cblas:
cblas: The interface can be consulted by opening /usr/include/cblas.h
cblas:
cblas: http://www.netlib.org/blas/
cblas:
cblas:
cblas: