1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-13 10:30:13 +01:00

three srclibs from the guardian project for informacam and lildebi

This commit is contained in:
David Black 2012-11-03 22:23:38 +00:00
parent a5b33d60cd
commit d12e934795

View File

@ -1268,6 +1268,27 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
vcs.gotorevision(ref)
return sdir
if name == 'GNUPG':
sdir = os.path.join(extlib_dir, 'GNUPG')
vcs = getvcs('git',
'https://github.com/guardianproject/gnupg-for-android.git', sdir, sdk_path)
vcs.gotorevision(ref)
return sdir
if name == 'IOCipher':
sdir = os.path.join(extlib_dir, 'IOCipher')
vcs = getvcs('git',
'https://github.com/guardianproject/IOCipher.git', sdir, sdk_path)
vcs.gotorevision(ref)
return sdir
if name == 'FFMPEG-Java':
sdir = os.path.join(extlib_dir, 'FFMPEG-Java')
vcs = getvcs('git',
'https://github.com/guardianproject/android-ffmpeg-java.git', sdir, sdk_path)
vcs.gotorevision(ref)
return sdir
raise BuildException('Unknown srclib ' + name)