├── .gitignore ├── LICENSE ├── README.md ├── quickpkg ├── testpost.sh ├── testpre.sh ├── testscripts ├── postinstall └── preinstall └── todo.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | *.pkg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/README.md -------------------------------------------------------------------------------- /quickpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/quickpkg -------------------------------------------------------------------------------- /testpost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/testpost.sh -------------------------------------------------------------------------------- /testpre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/testpre.sh -------------------------------------------------------------------------------- /testscripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/testscripts/postinstall -------------------------------------------------------------------------------- /testscripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/testscripts/preinstall -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/quickpkg/HEAD/todo.txt --------------------------------------------------------------------------------