development/mono: Updated for version 2.6.4.

This commit is contained in:
Robby Workman 2010-05-21 09:06:04 -05:00
parent 52b535c830
commit 57e36edf7a
2 changed files with 18 additions and 6 deletions

View file

@ -4,11 +4,20 @@
# Written by Sebastián Salazar Molina <ssalazar@orangepeople.cl>
PRGNAM=mono
VERSION=${VERSION:-2.6.3}
ARCH=${ARCH:-i486}
VERSION=${VERSION:-2.6.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i486 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e

View file

@ -1,10 +1,10 @@
PRGNAM="mono"
VERSION="2.6.3"
VERSION="2.6.4"
HOMEPAGE="http://www.mono-project.com/"
DOWNLOAD="http://ftp.novell.com/pub/mono/sources/mono/mono-2.6.3.tar.bz2"
MD5SUM="b1dc21bac2c7c75814a9f32246eadadd"
DOWNLOAD="http://ftp.novell.com/pub/mono/sources/mono/mono-2.6.4.tar.bz2"
MD5SUM="342a7ca3bea3cbec0c8ac48b9322fcb4"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Sebastián Salazar Molina"
EMAIL="ssalazar@orangepeople.cl"
APPROVED="Erik Hanson"
APPROVED="rworkman"