Add Licensing and Contributing
[clnl] / bin / buildosxrelease.sh
1 #!/bin/bash
2
3 bin/buildosxexec.sh && \
4   mkdir tmp && \
5   cp -ap dist/osx/CLNL.app tmp && \
6   mv osxsbcl tmp/CLNL.app/Contents/MacOS/ && \
7   cd tmp && \
8   tar zxf ../deps/osx/create-dmg-5acf22f.tar.gz && \
9   cd create-dmg && \
10   cp ../CLNL.app/Contents/Resources/CLNL.icns . && \
11   ./create-dmg --volname "CLNL Installer" --volicon "CLNL.icns" --icon-size 100 --window-size 250 250 --icon CLNL.app 150 100 CLNL.dmg ../CLNL.app && \
12   mv CLNL.dmg ../.. && \
13   cd ../.. && \
14   rm -rf tmp