24 lines
656 B
Bash
24 lines
656 B
Bash
# Maintainer: Erik erik@pixeloasis.eu
|
||
pkgname=windscribe-cli-runit
|
||
pkgver=1.0.0
|
||
pkgrel=1
|
||
arch=('x86_64')
|
||
pkgdesc="Windscribe VPN service for runit"
|
||
url="https://windscribe.com"
|
||
license=('none')
|
||
depends=()
|
||
source=()
|
||
sha256sums=() #
|
||
|
||
package() {
|
||
# create the runit dirs
|
||
install -d "$pkgdir"/etc/sv/windscribe-helper/log \
|
||
"$pkgdir"/var/log/windscribe-helper
|
||
|
||
# install the helper’s run scripts
|
||
install -m755 "$srcdir"/windscribe-helper/run \
|
||
"$pkgdir"/etc/sv/windscribe-helper/run
|
||
install -m755 "$srcdir"/windscribe-helper/log/run \
|
||
"$pkgdir"/etc/sv/windscribe-helper/log/run
|
||
}
|
||
|