mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
libraries/libmpc: Removed. This is part of Slackware 13.37.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
b89cbecbbe
commit
9d46b8e90d
4 changed files with 0 additions and 112 deletions
|
@ -1,3 +0,0 @@
|
||||||
Mpc is a C library for the arithmetic of complex numbers with arbitrarily
|
|
||||||
high precision and correct rounding of the result. It is built upon and
|
|
||||||
follows the same principles as Mpfr.
|
|
|
@ -1,80 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Slackware build script for MPC
|
|
||||||
|
|
||||||
# Written by Andrzej Telszewski <atelszewski@gmail.com>
|
|
||||||
|
|
||||||
PRGNAM=libmpc
|
|
||||||
VERSION=0.8.2
|
|
||||||
BUILD=${BUILD:-1}
|
|
||||||
TAG=${TAG:-_SBo}
|
|
||||||
|
|
||||||
SRCNAM=mpc
|
|
||||||
|
|
||||||
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 $SRCNAM-$VERSION
|
|
||||||
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
|
|
||||||
cd $SRCNAM-$VERSION
|
|
||||||
chown -R root:root .
|
|
||||||
chmod -R u+w,go+r-w,a-s .
|
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
|
||||||
./configure \
|
|
||||||
--prefix=/usr \
|
|
||||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--mandir=/usr/man \
|
|
||||||
--infodir=/usr/info \
|
|
||||||
--enable-static=no \
|
|
||||||
--enable-shared=yes \
|
|
||||||
--build=$ARCH-slackware-linux
|
|
||||||
|
|
||||||
make
|
|
||||||
make install-strip DESTDIR=$PKG
|
|
||||||
|
|
||||||
rm -f $PKG/usr/info/dir
|
|
||||||
gzip -9 $PKG/usr/info/*
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cp -a \
|
|
||||||
AUTHORS ChangeLog COPYING.LIB INSTALL NEWS README TODO \
|
|
||||||
$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}
|
|
|
@ -1,10 +0,0 @@
|
||||||
PRGNAM="libmpc"
|
|
||||||
VERSION="0.8.2"
|
|
||||||
HOMEPAGE="http://www.multiprecision.org/"
|
|
||||||
DOWNLOAD="http://www.multiprecision.org/mpc/download/mpc-0.8.2.tar.gz"
|
|
||||||
MD5SUM="e98267ebd5648a39f881d66797122fb6"
|
|
||||||
DOWNLOAD_x86_64=""
|
|
||||||
MD5SUM_x86_64=""
|
|
||||||
MAINTAINER="Andrzej Telszewski"
|
|
||||||
EMAIL="atelszewski@gmail.com"
|
|
||||||
APPROVED="rworkman"
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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-------------------------------------------------------|
|
|
||||||
libmpc: libmpc (C library for the arithmetic of complex numbers)
|
|
||||||
libmpc:
|
|
||||||
libmpc: Mpc is a C library for the arithmetic of complex numbers with
|
|
||||||
libmpc: arbitrarily high precision and correct rounding of the result.
|
|
||||||
libmpc: It is built upon and follows the same principles as Mpfr.
|
|
||||||
libmpc:
|
|
||||||
libmpc: Homepage: http://www.multiprecision.org/
|
|
||||||
libmpc:
|
|
||||||
libmpc:
|
|
||||||
libmpc:
|
|
||||||
libmpc:
|
|
Loading…
Reference in a new issue