• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick OSX question.

eigen

Diamond Member
Quick question.

I have never installed an app from a .tar on a Mac, where should install to.I just got my new ibook and want to put some of the apps I like from linux.My intuition would be to dl the .tar into the Applications folder then just untar, ./configure make then make install.Would this be correct? If not what would be the procedure.
 
Sounds right from my experience with Linux. Never installed from a tarball on OS X. OS X program installs are usually brain dead easy.
 
You might want to check the Makefile after the configure, to see if it's going to install in the places you want.

Other than that, OS X has all the necessary GNU tools, so it should be business as usual.
 
Putting it in the Applications directory would probably be pointless since when you do 'make install' it'll most likely copy the the files to somewhere in /usr/local. You should be able to change the target with ./configure options.

And you shouldn't compile as root, just untar it somewhere in your home directory, compile it and only run 'make install' as root or via sudo.
 
fink is definitely the way to go (I like fink commander). Other than that, I install stuff I can't get through fink to /usr/local, where it belongs.
 
Back
Top