summaryrefslogtreecommitdiffstats
path: root/get-sources.sh
blob: 1de40def0ea5b3db35cccd8d6a955a03cd5ac00f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# These variables refer to the version of Swift you
# want to build, and must match what Apple has
# made available at https://github.com/apple/swift/releases
# (but note *not* to prepend "swift-" to it)
TAG=DEVELOPMENT-SNAPSHOT-2018-01-15-a

wget https://github.com/apple/swift/archive/swift-${TAG}.tar.gz -O swift.tar.gz
wget https://github.com/apple/swift-compiler-rt/archive/swift-${TAG}.tar.gz -O swift-compiler-rt.tar.gz
wget https://github.com/apple/swift-corelibs-libdispatch/archive/swift-${TAG}.tar.gz -O corelibs-libdispatch.tar.gz
wget https://github.com/apple/swift-corelibs-foundation/archive/swift-${TAG}.tar.gz -O corelibs-foundation.tar.gz
wget https://github.com/apple/swift-integration-tests/archive/swift-${TAG}.tar.gz -O swift-integration-tests.tar.gz
wget https://github.com/apple/swift-corelibs-xctest/archive/swift-${TAG}.tar.gz -O corelibs-xctest.tar.gz
wget https://github.com/apple/swift-clang/archive/swift-${TAG}.tar.gz -O clang.tar.gz
wget https://github.com/apple/swift-package-manager/archive/swift-${TAG}.tar.gz -O package-manager.tar.gz
wget https://github.com/apple/swift-lldb/archive/swift-${TAG}.tar.gz -O lldb.tar.gz
wget https://github.com/apple/swift-llvm/archive/swift-${TAG}.tar.gz -O llvm.tar.gz
wget https://github.com/apple/swift-llbuild/archive/swift-${TAG}.tar.gz -O llbuild.tar.gz
wget https://github.com/apple/swift-cmark/archive/swift-${TAG}.tar.gz -O cmark.tar.gz
wget https://github.com/apple/swift-xcode-playground-support/archive/swift-${TAG}.tar.gz -O swift-xcode-playground-support.tar.gz
# Dunno if we need this as it's already a dependency....
#wget https://github.com/ninja-build/ninja/archive/v1.7.2.tar.gz -O ninja.tar.gz