fix Keka download link. (untested). Closes #427

This commit is contained in:
Mathieu Virbel 2017-05-12 11:35:33 +02:00
parent a9de15a905
commit 3d4791df7e

View file

@ -69,9 +69,9 @@ class TargetOSX(Target):
self.buildozer.info(
'Downloading Keka as dependency (to install Kivy)')
check_call(
('curl', '-O', 'http://www.kekaosx.com/release/Keka-1.0.4-intel.dmg'),
('curl', '-O', 'https://github.com/aonez/Keka/releases/download/v1.0.8/Keka-1.0.8.dmg'),
cwd=cwd)
check_call(('hdiutil', 'attach', 'Keka-1.0.4-intel.dmg'), cwd=cwd)
check_call(('hdiutil', 'attach', 'Keka-1.0.8.dmg'), cwd=cwd)
check_call(('cp', '-a','/Volumes/Keka/Keka.app', './Keka.app'), cwd=cwd)
check_call(('hdiutil', 'detach', '/Volumes/Keka'))