Created
August 11, 2015 22:56
-
-
Save zgramana/3a975120a7d4493a3ca4 to your computer and use it in GitHub Desktop.
Creates a standalone OSX executable of our cp-replicate .NET app.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export AS="as -arch i386” | |
export CC="cc -framework CoreFoundation -lobjc -liconv -arch i386” | |
mkbundle --deps --static -o cb-replicate cbreplicate.exe *.dll | |
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig:/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig | |
export LD_LIBRARY_PATH=/Library/Frameworks/Mono.framework/Versions/Current/lib/ | |
cd /Users/zgramana/Source/cb-replicate/bin/Release/ | |
mkbundle--deps --static -o cb-replicate cbreplicate.exe *.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment