Skip to content

Update PKGBUILD #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# Maintainer: TJ Vanderpoel <tj@rubyists.com>
pkgname=sv-helper
pkgver=1.0.0
pkgver=1.0.1
pkgrel=1
pkgdesc="Helpers to make using runit-run, runit-services and runit-dietlibc easier to use"
arch=(i686 x86_64)
url="http://github.com/rubyists/sv-helper"
license=('MIT')
depends=('runit-dietlibc')
# depends=('runit-dietlibc') # no reference
optdepends=('runit-services: for a variety of pre-made services' 'runit-run: to boot with runit as a pid 1 replacement')
source=(sv-helper.sh README.md)
md5sums=('308ac1f860a3ea6ab67cffd16fccb7b9'
'415fd25f146edc186c21a902a1fb7e15')
source=(sv-helper.sh rsvlog.sh README.md)
md5sums=('68d480d34e1d579e52cf28ecd90b1604'
'cd9c83fa9f70a9a045fb48ed10be0d08'
'e556ab944360485a1fcfb44c5309d67f')

package() {
install -D -m 0755 sv-helper.sh "$pkgdir/usr/bin/sv-helper"
install -D -m 0755 {sv-helper.sh,rsvlog.sh} -t "$pkgdir/usr/bin/"
install -D -m 0644 README.md "$pkgdir/usr/share/doc/sv-helper/README.md"
cd "$pkgdir/usr/bin"
for sv in sv-start sv-stop sv-restart sv-list svls sv-enable sv-disable sv-find;do
for sv in sv-start sv-stop sv-restart sv-list svls sv-enable sv-disable sv-find ; do
ln -s sv-helper $sv
done
ln -s rsvlog.sh rsvlog
}

# vim:set ts=2 sw=2 et: