├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── pkg.8 ├── pkg.pl └── zpkg.sh /.gitignore: -------------------------------------------------------------------------------- 1 | pkg.pl.bak 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbit/pkg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbit/pkg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbit/pkg/HEAD/README.md -------------------------------------------------------------------------------- /pkg.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbit/pkg/HEAD/pkg.8 -------------------------------------------------------------------------------- /pkg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbit/pkg/HEAD/pkg.pl -------------------------------------------------------------------------------- /zpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbit/pkg/HEAD/zpkg.sh --------------------------------------------------------------------------------