diff --git a/ci/travis/build.sh b/ci/travis/build.sh
index 14014313e5a2be27b7b92ff691c6c62bf5f04533..f097d6d62b23a9376612f3da80f93a1c69d83dcf 100755
--- a/ci/travis/build.sh
+++ b/ci/travis/build.sh
@@ -20,6 +20,8 @@ python gen_translations.py
 if [ $TRAVIS_OS_NAME == "osx" ]
 then
     pyinstaller sakia.spec
+    cp -rv dist/sakia/* dist/sakia.app/Contents/MacOS
+    rm -rfv dist/sakia
 elif [ $TRAVIS_OS_NAME == "linux" ]
 then
     pyinstaller sakia.spec
diff --git a/sakia.spec b/sakia.spec
index 3a4f0e069ca91cc8042c7403660f5bc3443560df..52b026d71fd223a2312525c944f42743fa66784d 100644
--- a/sakia.spec
+++ b/sakia.spec
@@ -63,7 +63,8 @@ if is_darwin:
          icon='sakia.ico',
          bundle_identifier=None,
          info_plist={
-        'NSHighResolutionCapable': 'True'
+        'NSHighResolutionCapable': 'True',
+        'LSBackgroundOnly': 'False'
         },)