diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-12 22:14:09 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2016-02-12 23:36:45 -0600 |
commit | 54534d3d6e806a565c96468a438e40a0bb253c09 (patch) | |
tree | b1c79da50981cbacdb75d220bd1c4545fd100599 /libraries/ntl | |
parent | d63d1be7f416bf9c2d286843b47ea5aa8599a057 (diff) | |
download | slackbuilds-54534d3d6e806a565c96468a438e40a0bb253c09.tar.gz |
libraries/ntl: Added (number theory library).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/ntl')
-rw-r--r-- | libraries/ntl/README | 4 | ||||
-rw-r--r-- | libraries/ntl/ntl.SlackBuild | 96 | ||||
-rw-r--r-- | libraries/ntl/ntl.info | 10 | ||||
-rw-r--r-- | libraries/ntl/slack-desc | 19 |
4 files changed, 129 insertions, 0 deletions
diff --git a/libraries/ntl/README b/libraries/ntl/README new file mode 100644 index 0000000000..19f5df615f --- /dev/null +++ b/libraries/ntl/README @@ -0,0 +1,4 @@ +NTL is a high-performance, portable C++ library providing data +structures and algorithms for manipulating signed, arbitrary length +integers, and for vectors, matrices, and polynomials over the +integers and over finite fields. diff --git a/libraries/ntl/ntl.SlackBuild b/libraries/ntl/ntl.SlackBuild new file mode 100644 index 0000000000..065a3d9cc1 --- /dev/null +++ b/libraries/ntl/ntl.SlackBuild @@ -0,0 +1,96 @@ +#!/bin/sh + +# Slackware build script for ntl + +# Copyright 2016 Willy Sudiarto Raharjo <willysr@slackbuilds.org> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=ntl +VERSION=${VERSION:-9.6.4} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +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" +else + SLKCFLAGS="-O2" + 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 +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 {} \; + +cd src +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + DEF_PREFIX=$PKG/usr \ + SHARED=on \ + NTL_GF2X_LIB=on \ + NATIVE=off \ + DOCDIR=$PKG/usr/doc \ + LIBDIR=$PKG/usr/lib${LIBDIRSUFFIX} + +make +make install PREFIX=$PKG/usr + +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 + +mv $PKG/usr/doc/NTL $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.${PKGTYPE:-tgz} diff --git a/libraries/ntl/ntl.info b/libraries/ntl/ntl.info new file mode 100644 index 0000000000..920146245b --- /dev/null +++ b/libraries/ntl/ntl.info @@ -0,0 +1,10 @@ +PRGNAM="ntl" +VERSION="9.6.4" +HOMEPAGE="http://www.shoup.net/ntl/" +DOWNLOAD="http://www.shoup.net/ntl/ntl-9.6.4.tar.gz" +MD5SUM="a329136fcc9f8c09d3690455f0ba698d" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="gf2x" +MAINTAINER="Willy Sudiarto Raharjo" +EMAIL="willysr@slackbuilds.org" diff --git a/libraries/ntl/slack-desc b/libraries/ntl/slack-desc new file mode 100644 index 0000000000..27549d6e8d --- /dev/null +++ b/libraries/ntl/slack-desc @@ -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------------------------------------------------------| +ntl: ntl (number theory library) +ntl: +ntl: NTL is a high-performance, portable C++ library providing data +ntl: structures and algorithms for manipulating signed, arbitrary length +ntl: integers, and for vectors, matrices, and polynomials over the +ntl: integers and over finite fields. +ntl: +ntl: Project URL: http://www.shoup.net/ntl/ +ntl: +ntl: +ntl: |