2012-06-25 11:15:27 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Make sure we're in our directory (i.e., where this shell script is)
|
|
|
|
echo $0
|
|
|
|
cd `dirname $0`
|
2012-06-25 12:46:31 +02:00
|
|
|
|
|
|
|
# Configure fetch method
|
2014-08-07 14:27:32 +02:00
|
|
|
URL="http://www.minix3.org/pkgsrc/distfiles/minix/3.3.0/mpfr-3.1.2.tar.bz2"
|
2013-12-06 12:04:52 +01:00
|
|
|
BACKUP_URL="http://www.mpfr.org/mpfr-3.1.2/mpfr-3.1.2.tar.bz2"
|
2014-01-23 11:38:26 +01:00
|
|
|
FETCH=ftp
|
2012-06-25 12:46:31 +02:00
|
|
|
which curl >/dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
FETCH="curl -O -f"
|
|
|
|
fi
|
2012-06-25 11:15:27 +02:00
|
|
|
|
|
|
|
# Fetch sources if not available
|
|
|
|
if [ ! -d dist ];
|
|
|
|
then
|
2013-12-06 12:04:52 +01:00
|
|
|
if [ ! -f mpfr-3.1.2.tar.bz2 ]; then
|
2012-06-25 12:46:31 +02:00
|
|
|
$FETCH $URL
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
$FETCH $BACKUP_URL
|
|
|
|
fi
|
|
|
|
fi
|
2012-06-25 11:15:27 +02:00
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
tar -oxjf mpfr-3.1.2.tar.bz2
|
|
|
|
mv mpfr-3.1.2 dist && \
|
2012-10-26 15:22:39 +02:00
|
|
|
cd dist && \
|
|
|
|
cat ../patches/* |patch -p1
|
2012-06-25 11:15:27 +02:00
|
|
|
fi
|
|
|
|
|