New package: nextdns-1.39.4

This commit is contained in:
RunningDroid 2022-10-11 17:13:49 -04:00 committed by Duncan Overbruck
parent d12f59109e
commit dfcadbe502
3 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,4 @@
#!/bin/sh
exec 2>&1
[ -r conf ] && . ./conf
exec /usr/bin/nextdns run ${OPTS:--config-file /etc/nextdns.conf}

View file

@ -0,0 +1,26 @@
diff --recursive --unified nextdns-1.39.4-clean/host/service/runit/service.go nextdns-1.39.4/host/service/runit/service.go
--- nextdns-1.39.4-clean/host/service/runit/service.go 2023-04-14 00:46:58.232616533 -0400
+++ nextdns-1.39.4/host/service/runit/service.go 2023-04-14 01:12:43.931927878 -0400
@@ -31,20 +31,14 @@
}
func (s Service) Install() error {
- if err := internal.CreateWithTemplate(s.Path, tmpl, 0755, s.Config); err != nil {
- return err
- }
- if err := os.Symlink(strings.TrimSuffix(s.Path, "/run"), "/etc/runit/runsvdir/current/"+s.Config.Name); err != nil {
+ if err := os.Symlink(strings.TrimSuffix(s.Path, "/run"), "/var/service/"+s.Config.Name); err != nil {
return err
}
return nil
}
func (s Service) Uninstall() error {
- if err := os.RemoveAll("/etc/runit/runsvdir/current/" + s.Config.Name); err != nil {
- return err
- }
- if err := os.RemoveAll(strings.TrimSuffix(s.Path, "/run")); err != nil {
+ if err := os.RemoveAll("/var/service/" + s.Config.Name); err != nil {
return err
}
return nil

18
srcpkgs/nextdns/template Normal file
View file

@ -0,0 +1,18 @@
# Template file for 'nextdns'
pkgname=nextdns
version=1.39.4
revision=1
build_style=go
go_import_path="github.com/nextdns/nextdns"
go_ldflags="-X main.version=${version}"
short_desc="NextDNS CLI client (DoH Proxy)"
maintainer="RunningDroid <runningdroid@zoho.com>"
license="MIT"
homepage="https://nextdns.io/"
distfiles="https://github.com/nextdns/nextdns/archive/refs/tags/v${version}.tar.gz"
checksum=e24db909fbd732e064be465b74f4004a6f4fc0f422ef7c10e86ff707a016ccac
post_install() {
vsv nextdns
vlicense LICENSE
}