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

srclib SunriseSunset

This commit is contained in:
David Black 2013-03-01 19:39:30 +00:00
parent 2c0f772efd
commit 2474242da6

View File

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