├── .gitignore ├── CHANGELOG.md ├── Makefile ├── PKGBUILD ├── README.md ├── README.sh ├── UNLICENSE ├── VERSION └── paruz /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | src/ 3 | *.tar.zst 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehillen/paruz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehillen/paruz/HEAD/Makefile -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehillen/paruz/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehillen/paruz/HEAD/README.md -------------------------------------------------------------------------------- /README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehillen/paruz/HEAD/README.sh -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehillen/paruz/HEAD/UNLICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.1.2 2 | -------------------------------------------------------------------------------- /paruz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehillen/paruz/HEAD/paruz --------------------------------------------------------------------------------