mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Additional srclib
This commit is contained in:
parent
6aa8f61acd
commit
5cef97e91c
1 changed files with 10 additions and 0 deletions
|
@ -643,6 +643,16 @@ def getsrclib(spec, extlib_dir):
|
|||
raise BuildException('Error updating ActionBarSherlock project')
|
||||
return libdir
|
||||
|
||||
if name == 'ViewPagerIndicator':
|
||||
sdir = os.path.join(extlib_dir, 'ViewPagerIndicator')
|
||||
vcs = getvcs('git',
|
||||
'https://github.com/mariotaku/viewpagerindicator.git', sdir)
|
||||
vcs.gotorevision(ref)
|
||||
if subprocess.call(['android', 'update', 'project', '-p',
|
||||
sdir]) != 0:
|
||||
raise BuildException('Error updating ViewPagerIndicator project')
|
||||
return sdir
|
||||
|
||||
if name == 'ActionBar':
|
||||
sdir = os.path.join(extlib_dir, 'ActionBar')
|
||||
vcs = getvcs('git',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue