#!/bin/sh
# Set initial variables:
CWD=`pwd`
TMP=/tmp
PKG=$TMP/package-mpc
VERSION=0.8.1
ARCH=alpha
BUILD=2
TARGET=$ARCH-alphaslack-linux

rm -rf $PKG
mkdir -p $PKG
( cd $TMP
rm -rf mpc-$VERSION
tar xf $CWD/mpc-$VERSION.tar.gz
cd mpc-$VERSION
chown -R root:root .
./configure \
 --prefix=/usr \
 --enable-static=yes \
 --enable-shared=yes \
 --infodir=/usr/info \
 --mandir=/usr/man \
 --build=$TARGET

make || exit 1
make install DESTDIR=$PKG

( cd $PKG
 find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
 find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)

# Hardly a savings doing this...
#strip -g $PKG/usr/lib/*.a
rm -f $PKG/usr/info/dir
gzip -9 $PKG/usr/info/*
mkdir -p $PKG/usr/doc/mpfr-$VERSION
cp -a AUTHORS COPYING NEWS README TODO $PKG/usr/doc/mpfr-$VERSION

mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
makepkg -l y -c n $TMP/mpc-${VERSION}-${ARCH}-${BUILD}.tgz
) 2>&1 | tee $TMP/mpc.build.log
