build: download llvm and libffi from the JFrog repo

This commit is contained in:
Svyatoslav Scherbina
2016-10-17 17:35:25 +03:00
parent 7ed9d9c633
commit e4bc19b145
9 changed files with 30 additions and 25 deletions
+9
View File
@@ -75,6 +75,15 @@ class TgzNativeDep extends NativeDep {
}
task libffi(type: TgzNativeDep) {
baseName = "libffi-3.2.1-${target}"
}
task llvm(type: TgzNativeDep) {
baseName = "clang+llvm-3.8.0-${target}"
}
task update {
dependsOn tasks.withType(NativeDep)
}