diff options
author | Grigorios Bouzakis <grbzks@gmail.com> | 2010-05-12 23:27:36 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:27:36 +0200 |
commit | 20f8c8d186ae622f63961ade937d6ea625f0974e (patch) | |
tree | 8115954d3c52ae2aae79ffef5e73419d51d89fa9 /academic/calc | |
parent | 8018ec6804d386cd842ca93964bea31f07140372 (diff) | |
download | slackbuilds-20f8c8d186ae622f63961ade937d6ea625f0974e.tar.gz |
academic/calc: Added to 12.2 repository
Diffstat (limited to 'academic/calc')
-rw-r--r-- | academic/calc/README | 3 | ||||
-rw-r--r-- | academic/calc/calc.SlackBuild | 75 | ||||
-rw-r--r-- | academic/calc/calc.info | 8 | ||||
-rw-r--r-- | academic/calc/slack-desc | 19 |
4 files changed, 105 insertions, 0 deletions
diff --git a/academic/calc/README b/academic/calc/README new file mode 100644 index 0000000000..fb0ce245f9 --- /dev/null +++ b/academic/calc/README @@ -0,0 +1,3 @@ +Calc is arbitrary precision C-like arithmetic system that is a calculator, +an algorithm prototyper, and mathematical research tool. +Calc comes with a rich set of builtin mathematical and programmatic functions. diff --git a/academic/calc/calc.SlackBuild b/academic/calc/calc.SlackBuild new file mode 100644 index 0000000000..66cfd63f80 --- /dev/null +++ b/academic/calc/calc.SlackBuild @@ -0,0 +1,75 @@ +#!/bin/sh + +# Slackware build script for calc + +# Written by Grigorios Bouzakis (grbzks@gmail.com) +# Modified by Robby Workman <rworkman@slackbuilds.org> + +PRGNAM=calc +VERSION=${VERSION:-2.12.4.0} +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" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +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 {} \; + +make \ + EXTRA_CFLAGS="$SLKCFLAGS" \ + SCRIPTDIR=/usr/libexec/calc \ + MANDIR=/usr/man/man1 +make install \ + EXTRA_CFLAGS="$SLKCFLAGS" \ + SCRIPTDIR=/usr/libexec/calc \ + MANDIR=/usr/man/man1 \ + T=$PKG + +( 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 +) + +( cd $PKG/usr/man || exit 1 + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +# We like root to have write permissions on our files, kthxbye +find $PKG/usr/ -type f -exec chmod u+w {} \; + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + BUGS CHANGES COPYING COPYING-LGPL HOWTO.INSTALL LIBRARY README \ + $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 diff --git a/academic/calc/calc.info b/academic/calc/calc.info new file mode 100644 index 0000000000..29a4545257 --- /dev/null +++ b/academic/calc/calc.info @@ -0,0 +1,8 @@ +PRGNAM="calc" +VERSION="2.12.4.0" +HOMEPAGE="http://www.isthe.com/chongo/tech/comp/calc/" +DOWNLOAD="http://downloads.sourceforge.net/calc/calc-2.12.4.0.tar.bz2" +MD5SUM="2ef56695837c6e501ca80b64e0be0db6" +MAINTAINER="Grigorios Bouzakis" +EMAIL="grbzks@gmail.com" +APPROVED="rworkman" diff --git a/academic/calc/slack-desc b/academic/calc/slack-desc new file mode 100644 index 0000000000..63fb829585 --- /dev/null +++ b/academic/calc/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 ':'. + + |-----handy-ruler------------------------------------------------------| +calc: calc (C-style arbitrary precision calculator) +calc: +calc: Calc is arbitrary precision C-like arithmetic system that is a +calc: calculator, an algorithm prototyper, and mathematical research tool. +calc: Calc comes with a rich set of builtin mathematical and programmatic +calc: functions +calc: +calc: Homepage: http://www.isthe.com/chongo/tech/comp/calc/ +calc: +calc: +calc: |