-
-
Save trinitronx/5437061 to your computer and use it in GitHub Desktop.
#!/bin/bash | |
libs=( "/usr/local/lib/libmacfuse_i32.2.dylib" \ | |
"/usr/local/lib/libosxfuse_i32.2.dylib" \ | |
"/usr/local/lib/libosxfuse_i64.2.dylib" \ | |
"/usr/local/lib/libmacfuse_i64.2.dylib" \ | |
"/usr/local/lib/libosxfuse_i32.la" \ | |
"/usr/local/lib/libosxfuse_i64.la" \ | |
"/usr/local/lib/pkgconfig/osxfuse.pc" ) | |
truecrypt="/Applications/TrueCrypt.app/Contents/Resources/Library" | |
[ ! -d $truecrypt ] && mkdir -p $truecrypt | |
for lib in "${libs[@]}" | |
do | |
mv $lib "${truecrypt}/" && echo "Moved ${lib} to ${truecrypt}." || echo "Problem moving: ${lib} to ${truecrypt}" | |
rm $lib || echo "Problem removing: ${lib}" | |
ln -s "${truecrypt}/$(basename $lib)" ${lib} && echo "Linked ${lib}." || echo "Problem symlinking ${lib}" | |
done | |
brew prune | |
brew doctor |
You might want to add "set -e" (abort on error) to this script. Otherwise, if the "mv" fails, it could still run the "rm".
Ok these run for me in mavericks!! many thanks
Worked for me on Mavericks too. Ready to brew! Thanks.
What to do with it?
Thanks! Ready to brew...
Thank you! Worked great for me running Mavericks
https://gist.github.com/yiufung/7445219 fixes the errors spat out by calling "rm" after "mv" since that command already remove the origin file.
Thanks for sharing!
Thanks for this! Fixed the Truecrypt-caused brew doctor errors perfectly.
This works, but I wanted to Rubify it! Anyone can check that out here: https://gist.github.com/SteveBenner/10938596.
It uses Ruby module FileUtils, but falls back to shell commands if you can't include the module for some reason. It also prevents you from running the script if you don't need to.
Thanks a lot! brew doctor nice and clean now!
this works greatly :) thank you!
This little snippet demonstrates nicely the idea, but it lacks important verifications, symlinks aren't copied over and the pkgconfig files aren't moved to the right subdir.
Fixed, tested on Yosemite the gist is here.
Thanx to Aaron, James and Yiufung . enjoy...
Fork of: jimjh/truecrypt_fix.bash