jamulus/mac/deploy_mac.sh
2010-04-11 18:04:06 +00:00

25 lines
438 B
Bash
Executable File

#!/bin/sh
cd ..
# TODO add tag to CVS with current version number
# cvs -n update 2>null | grep -i "M " # error if any file is locally modified!!! -> TODO
# first clean up
rm -rf llcon.app
make clean
# make everything
make -j2
# call qt mac deploy tool
macdeployqt llcon.app -dmg
# create zip file including COPYING file
zip llcon-version-mac.zip llcon.dmg COPYING
# cleanup and go back to original directory
rm llcon.dmg
cd mac