academic/csparse: Updated for version 3.1.4.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>
This commit is contained in:
parent
072895894c
commit
32f81b1849
|
@ -147,7 +147,7 @@ new file mode 100644
|
||||||
+lib_LTLIBRARIES = libcsparse.la
|
+lib_LTLIBRARIES = libcsparse.la
|
||||||
+libcsparse_la_SOURCES = $(CSPARSESRC)
|
+libcsparse_la_SOURCES = $(CSPARSESRC)
|
||||||
+libcsparse_la_LIBADD = -lm
|
+libcsparse_la_LIBADD = -lm
|
||||||
+libcsparse_la_LDFLAGS = -no-undefined -version-number 3:1:2
|
+libcsparse_la_LDFLAGS = -no-undefined -release $(PACKAGE_VERSION)
|
||||||
diff --git a/configure.ac b/configure.ac
|
diff --git a/configure.ac b/configure.ac
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
|
@ -157,7 +157,7 @@ new file mode 100644
|
||||||
+# Process this file with autoconf to produce a configure script.
|
+# Process this file with autoconf to produce a configure script.
|
||||||
+
|
+
|
||||||
+AC_PREREQ([2.69])
|
+AC_PREREQ([2.69])
|
||||||
+AC_INIT([CSparse],[3.1.2],[DrTimothyAldenDavis@gmail.com],[csparse],[http://www.suitesparse.com/])
|
+AC_INIT([CSparse],[3.1.4],[DrTimothyAldenDavis@gmail.com],[csparse],[http://www.suitesparse.com/])
|
||||||
+AC_CONFIG_SRCDIR([Source/cs_print.c])
|
+AC_CONFIG_SRCDIR([Source/cs_print.c])
|
||||||
+AC_CONFIG_HEADERS([config.h])
|
+AC_CONFIG_HEADERS([config.h])
|
||||||
+AM_INIT_AUTOMAKE([foreign])
|
+AM_INIT_AUTOMAKE([foreign])
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Slackware build script for CSparse
|
# Slackware build script for CSparse
|
||||||
|
|
||||||
# Copyright 2013 Kyle Guinn <elyk03@gmail.com>, USA
|
# Copyright 2013-2015 Kyle Guinn <elyk03@gmail.com>, USA
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -23,8 +23,10 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=csparse
|
PRGNAM=csparse
|
||||||
SRCNAM=CSparse
|
SRCNAM=SuiteSparse
|
||||||
VERSION=${VERSION:-3.1.2}
|
SUBDIR=CSparse
|
||||||
|
VERSION=${VERSION:-3.1.4}
|
||||||
|
SRCVER=${SRCVER:-4.4.4}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -58,7 +60,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Recommended by SuiteSparse
|
# Recommended by SuiteSparse
|
||||||
SLKCFLAGS="$SLKCFLAGS -fexceptions -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
|
SLKCFLAGS="$SLKCFLAGS -fexceptions -D_FILE_OFFSET_BITS=64"
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
@ -66,14 +68,10 @@ rm -rf $PKG
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
cd $TMP
|
cd $TMP
|
||||||
rm -rf $SRCNAM
|
rm -rf $SRCNAM
|
||||||
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
|
tar xvf $CWD/$SRCNAM-$SRCVER.tar.gz
|
||||||
cd $SRCNAM
|
cd $SRCNAM/$SUBDIR
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find -L . \
|
chmod -R u+w,go-w,a+rX-st .
|
||||||
\( -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 {} \;
|
|
||||||
|
|
||||||
patch -p1 < $CWD/autotoolize.diff
|
patch -p1 < $CWD/autotoolize.diff
|
||||||
autoreconf -vif
|
autoreconf -vif
|
||||||
|
@ -96,6 +94,8 @@ make
|
||||||
make check
|
make check
|
||||||
make install-strip DESTDIR=$PKG
|
make install-strip DESTDIR=$PKG
|
||||||
|
|
||||||
|
find $PKG/usr/lib${LIBDIRSUFFIX} -name '*.la' -delete
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="csparse"
|
PRGNAM="csparse"
|
||||||
VERSION="3.1.2"
|
VERSION="3.1.4"
|
||||||
HOMEPAGE="https://www.cise.ufl.edu/research/sparse/CSparse/"
|
HOMEPAGE="http://faculty.cse.tamu.edu/davis/suitesparse.html"
|
||||||
DOWNLOAD="https://www.cise.ufl.edu/research/sparse/CSparse/versions/CSparse-3.1.2.tar.gz"
|
DOWNLOAD="http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-4.4.4.tar.gz"
|
||||||
MD5SUM="c610815814fe38de69aaf00d38604012"
|
MD5SUM="e0af74476935c9ff6d971df8bb6b82fc"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
|
|
Loading…
Reference in New Issue