mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
three srclibs from the guardian project for informacam and lildebi
This commit is contained in:
parent
a5b33d60cd
commit
d12e934795
1 changed files with 21 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue