updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / sv-helper / PKGBUILD
blobba2e2386a5943399f7455c496486f9a817188817
1 # Maintainer: TJ Vanderpoel <tj@rubyists.com>
2 pkgname=sv-helper
3 pkgver=0.72
4 pkgrel=1
5 pkgdesc="Helpers to make using runit-run-git or runit-dietlibc easier to use"
6 arch=(i686 x86_64)
7 url="http://github.com/rubyists/sv-helper"
8 license=('MIT')
9 depends=('runit-dietlibc')
10 optdepends=('runit-services-git: for a variety of pre-made services' 'runit-run-git: to boot with runit as a pid 1 replacement')
11 source=(sv-helper.sh README.md)
12 md5sums=('4e4fd427732bc47aca30e912258ccf16'
13          '415fd25f146edc186c21a902a1fb7e15')
15 package() {
16   install -D -m 0755 sv-helper.sh "$pkgdir/usr/bin/sv-helper"
17   install -D -m 0644 README.md "$pkgdir/usr/share/doc/sv-helper/README.md"
18   cd "$pkgdir/usr/bin"
19   for sv in sv-list svls sv-enable sv-disable sv-find;do
20     ln -s sv-helper $sv
21   done
24 # vim:set ts=2 sw=2 et: