├── .gitignore ├── LICENSE.md ├── Makefile ├── NOTICE.txt ├── README.md ├── control └── layout └── DEBIAN └── preinst /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | packages 3 | versions 4 | tbds 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/libswift/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/libswift/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/libswift/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/libswift/HEAD/README.md -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/libswift/HEAD/control -------------------------------------------------------------------------------- /layout/DEBIAN/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabiroberai/libswift/HEAD/layout/DEBIAN/preinst --------------------------------------------------------------------------------