fix Keka download link. (untested). Closes #427
This commit is contained in:
parent
a9de15a905
commit
3d4791df7e
1 changed files with 2 additions and 2 deletions
|
@ -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'))
|
||||
|
||||
|
|
Loading…
Reference in a new issue