1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

srclib: anysoftkeyboard tools

This commit is contained in:
David Black 2013-02-11 16:01:12 +00:00
parent 54efab5851
commit 9a6d9e478c

View File

@ -1511,6 +1511,13 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
raise BuildException('Error updating AndrozicLib project')
return sdir
if name == 'AnySoftKeyboardTools':
sdir = os.path.join(extlib_dir, 'AnySoftKeyboardTools')
vcs = getvcs('git',
'https://github.com/AnySoftKeyboard/AnySoftKeyboardTools', sdir, sdk_path)
vcs.gotorevision(ref)
return sdir
raise BuildException('Unknown srclib ' + name)