mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
development/mono: Updated for version 4.2.2.10.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
85abd528cb
commit
127db88ff5
3 changed files with 17 additions and 7 deletions
|
@ -4,3 +4,12 @@ Microsoft's .Net Framework based on the ECMA standards for C# and the Common
|
||||||
Language Runtime. We feel that by embracing a successful, standardized
|
Language Runtime. We feel that by embracing a successful, standardized
|
||||||
software platform, we can lower the barriers to producing great applications
|
software platform, we can lower the barriers to producing great applications
|
||||||
for Linux.
|
for Linux.
|
||||||
|
|
||||||
|
|
||||||
|
Notes from https://github.com/mono/mono:
|
||||||
|
- Mono build relies on a working Mono C# compiler to compile itself
|
||||||
|
(also known as bootstrapping).
|
||||||
|
|
||||||
|
- If you don't have a working Mono installation, the build process uses
|
||||||
|
the 'monolite' distribution, which contains just enough to run the 'mcs'
|
||||||
|
compiler. This is considered a "slightly more risky approach" to build Mono.
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
# Updated by Andre Barboza <bmg.andre@gmail.com>
|
# Updated by Andre Barboza <bmg.andre@gmail.com>
|
||||||
|
|
||||||
PRGNAM=mono
|
PRGNAM=mono
|
||||||
VERSION=${VERSION:-3.12.1}
|
VERSION=${VERSION:-4.2.2.10}
|
||||||
|
MAJORVERSION=${MAJORVERSION:-4.2.2}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -43,7 +44,8 @@ mkdir -p $TMP $PKG $OUTPUT
|
||||||
cd $TMP
|
cd $TMP
|
||||||
rm -rf $PRGNAM-$VERSION
|
rm -rf $PRGNAM-$VERSION
|
||||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||||
cd $PRGNAM-$VERSION
|
cd $PRGNAM-$MAJORVERSION
|
||||||
|
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find -L . \
|
find -L . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||||
|
@ -51,7 +53,6 @@ find -L . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||||
|
|
||||||
# Fix libgdiplus library path
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="mono"
|
PRGNAM="mono"
|
||||||
VERSION="3.12.1"
|
VERSION="4.2.2.10"
|
||||||
HOMEPAGE="http://www.mono-project.com/"
|
HOMEPAGE="http://www.mono-project.com/"
|
||||||
DOWNLOAD="http://download.mono-project.com/sources/mono/mono-3.12.1.tar.bz2"
|
DOWNLOAD="http://download.mono-project.com/sources/mono/mono-4.2.2.10.tar.bz2"
|
||||||
MD5SUM="ccab015f0c54ffeccd2924b44885809c"
|
MD5SUM="16644eab7d890e568d34a18e93e7a878"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES="libgdiplus"
|
||||||
MAINTAINER="Andre Barboza"
|
MAINTAINER="Andre Barboza"
|
||||||
EMAIL="bmg.andre@gmail.com"
|
EMAIL="bmg.andre@gmail.com"
|
||||||
|
|
Loading…
Reference in a new issue