https://kivy.org/doc/stable/guide/packaging-osx.html
This:
osx> ./package-app.sh /path/to/your/<app_folder_name>/
there is no "package-app.sh", should read:
osx> python ./package_app.py /path/to/your/<app_folder_name>/ ...
where ... is all the params from:
osx> python ./package_app.py --help
Also this:
"osx> cp -a /Applications/Kivy.app ./Kivy.App"
after a Python 2 install should read:
"osx> cp -a /Applications/Kivy2.app ./Kivy.App"
The app, as built, still doesn't work though.