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

srclib: dashclock

This commit is contained in:
David Black 2013-02-17 19:11:42 +00:00
parent 25c6c4abd4
commit da071715e1

View File

@ -1525,6 +1525,13 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
vcs.gotorevision(ref)
return sdir
if name == 'DashClock':
sdir = os.path.join(extlib_dir, 'DashClock')
vcs = getvcs('git',
'https://code.google.com/p/dashclock', sdir, sdk_path)
vcs.gotorevision(ref)
return sdir
raise BuildException('Unknown srclib ' + name)