├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── control ├── ent.xml ├── layout └── DEBIAN │ └── postinst └── prepare-toolchain /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages 3 | toolchains 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/swift-toolchain-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/swift-toolchain-ios/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/swift-toolchain-ios/HEAD/README.md -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/swift-toolchain-ios/HEAD/control -------------------------------------------------------------------------------- /ent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/swift-toolchain-ios/HEAD/ent.xml -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/swift-toolchain-ios/HEAD/layout/DEBIAN/postinst -------------------------------------------------------------------------------- /prepare-toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/swift-toolchain-ios/HEAD/prepare-toolchain --------------------------------------------------------------------------------