Re: C Sharp?
Re: C Sharp?
- Subject: Re: C Sharp?
- From: Dave <email@hidden>
- Date: Thu, 16 Jul 2015 14:38:50 +0100
I’m trying to run this Script:
PREFIX=/usr/local
# Ensure you have write permissions to /usr/local
mkdir $PREFIX
sudo chown -R `whoami` $PREFIX
PATH=$PREFIX/bin:$PATH
# Download and build dependencies
mkdir ~/Build
cd ~/Build
curl -O ftp://ftp.gnu.org/gnu/m4/m4-1.4.17.tar.gz
curl -O ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
curl -O ftp://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz
curl -O ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.2.tar.gz
for i in *.tar.gz; do tar xzvf $i; done
for i in */configure; do (cd `dirname $i`; ./configure --prefix=$PREFIX && make && make install); done
It’s to install the Mono dependancies, I get this error:
-bash: ./MonoDependanciesInstall.sh: Permission denied
It’s been ages since I did any serious unix hacking, and not sure what permissions I need? The other command:
brew install autoconf automake libtool pkg-config
But that’s not there either and no idea how to install it?
Any unix guri’s got any advice on the best way to get the dependancies installed etc.
The full thing is at:
http://www.mono-project.com/docs/compiling-mono/mac/
Thanks a lot
Dave
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden