chiark / gitweb /
three srclibs from the guardian project for informacam and lildebi
authorDavid Black <david8black@gmail.com>
Sat, 3 Nov 2012 22:23:38 +0000 (22:23 +0000)
committerDavid Black <david8black@gmail.com>
Sat, 3 Nov 2012 22:23:38 +0000 (22:23 +0000)
fdroidserver/common.py

index e3ee9101de91accb6be015701518bd9374b9c39c..3dfb5976216ae04c4e69d34d72a8ebd38b6391b7 100644 (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)