diff build_release @ 812:574495372d1c

Finish OS X support in build_release script. Fix a name conflict in vgmplay on OS X. Call set_exe_str in vgmplay and stateview
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Jul 2015 21:18:44 -0700
parents b1a09ef90755
children 4cbc349a82a9
line wrap: on
line diff
--- a/build_release	Sun Jul 26 20:48:01 2015 -0700
+++ b/build_release	Sun Jul 26 21:18:44 2015 -0700
@@ -31,7 +31,11 @@
 	cmd="wine blastem.exe"
 	txt=".txt"
 else
-	binaries="dis zdis stateview vgmplay blastem termhelper lib"
+	if [ $OS = "Darwin" ]; then
+		binaries="dis zdis stateview vgmplay blastem termhelper Frameworks"
+	else
+		binaries="dis zdis stateview vgmplay blastem termhelper lib"
+	fi
 	cmd="./blastem"
 	txt=""
 fi
@@ -51,7 +55,11 @@
 for file in README COPYING CHANGELOG; do
 	cp "$file" "$dir"/"$file$txt"
 done
-cp sdl/COPYING.txt "$dir"/SDL-LICENSE$txt
+if [ $OS = "Darwin" ]; then
+	cp SDL-LICENSE "$dir"
+else
+	cp sdl/COPYING.txt "$dir"/SDL-LICENSE$txt
+fi
 cp glew/LICENSE.txt "$dir"/GLEW-LICENSE$txt
 
 if [ $OS = "Windows" ]; then