mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
two srclibs: busybox and busybox configs
This commit is contained in:
parent
da7162f5aa
commit
01d3b32126
1 changed files with 14 additions and 0 deletions
|
@ -1367,6 +1367,20 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
|
|||
vcs.gotorevision(ref)
|
||||
return sdir
|
||||
|
||||
if name == 'Busybox':
|
||||
sdir = os.path.join(extlib_dir, 'Busybox')
|
||||
vcs = getvcs('git',
|
||||
'git://busybox.net/busybox.git', sdir, sdk_path)
|
||||
vcs.gotorevision(ref)
|
||||
return sdir
|
||||
|
||||
if name == 'BusyboxConfigs':
|
||||
sdir = os.path.join(extlib_dir, 'BusyboxConfigs')
|
||||
vcs = getvcs('git',
|
||||
'https://github.com/tias/android-busybox-ndk.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