mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Metadata: new droidnotify version
This commit is contained in:
parent
895811f2c2
commit
2ff7da8e90
4 changed files with 17 additions and 17 deletions
12
common.py
12
common.py
|
@ -563,6 +563,18 @@ def getsrclib(spec, extlib_dir):
|
|||
raise BuildException('Error updating ActionBarSherlock project')
|
||||
return libdir
|
||||
|
||||
if name == 'FacebookSDK':
|
||||
sdir = os.path.join(extlib_dir, 'FacebookSDK')
|
||||
vcs = getvcs('git',
|
||||
'git://github.com/facebook/facebook-android-sdk.git', sdir)
|
||||
vcs.gotorevision(ref)
|
||||
libdir = os.path.join(sdir, 'facebook')
|
||||
if subprocess.call(['android', 'update', 'project', '-p',
|
||||
libdir]) != 0:
|
||||
raise BuildException('Error updating FacebookSDK project')
|
||||
return libdir
|
||||
|
||||
|
||||
raise BuildException('Unknown srclib ' + name)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue