├── .gitignore ├── .overcommit.yml ├── COPYING ├── PKGBUILD ├── README.md ├── makefile ├── rsvlog.sh ├── runsvdir.sh └── sv-helper.sh /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | src/ 3 | *.gz 4 | *.xz 5 | -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/COPYING -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/makefile -------------------------------------------------------------------------------- /rsvlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/rsvlog.sh -------------------------------------------------------------------------------- /runsvdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/runsvdir.sh -------------------------------------------------------------------------------- /sv-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyists/sv-helper/HEAD/sv-helper.sh --------------------------------------------------------------------------------