summaryrefslogtreecommitdiff
path: root/core/openresolv
diff options
context:
space:
mode:
Diffstat (limited to 'core/openresolv')
-rw-r--r--core/openresolv/.footprint23
-rw-r--r--core/openresolv/.signature6
-rw-r--r--core/openresolv/MAKEPKG29
3 files changed, 58 insertions, 0 deletions
diff --git a/core/openresolv/.footprint b/core/openresolv/.footprint
new file mode 100644
index 0000000..4c085d6
--- /dev/null
+++ b/core/openresolv/.footprint
@@ -0,0 +1,23 @@
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/resolvconf.conf
+drwxr-xr-x root/root lib/
+drwxr-xr-x root/root lib/resolvconf/
+-rw-r--r-- root/root lib/resolvconf/dnsmasq
+-rw-r--r-- root/root lib/resolvconf/libc
+-rw-r--r-- root/root lib/resolvconf/named
+-rw-r--r-- root/root lib/resolvconf/pdns_recursor
+-rw-r--r-- root/root lib/resolvconf/pdnsd
+-rw-r--r-- root/root lib/resolvconf/resolvectl
+-rw-r--r-- root/root lib/resolvconf/unbound
+drwxr-xr-x root/root lib/resolvconf/libc.d/
+-rw-r--r-- root/root lib/resolvconf/libc.d/avahi-daemon
+-rw-r--r-- root/root lib/resolvconf/libc.d/mdnsd
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/resolvconf
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man5/
+-r--r--r-- root/root usr/share/man/man5/resolvconf.conf.5.gz
+drwxr-xr-x root/root usr/share/man/man8/
+-r--r--r-- root/root usr/share/man/man8/resolvconf.8.gz
diff --git a/core/openresolv/.signature b/core/openresolv/.signature
new file mode 100644
index 0000000..1569aae
--- /dev/null
+++ b/core/openresolv/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mDzWQ2MbKBf8mtcvQy55yiXGoFPXeg5aHankJYFLn0JZyCKYo8s3zzbiNHNNIAA1GeILB+itxXEjs/xq04INTws=
+
+SHA256 (MAKEPKG) = c6fa0252d0e965f90279cc3398721e8fd4dc8b1eefa8ea249757164b19b6aa21
+SHA256 (.footprint) = 78c9a120704e068d1e8bb00fd364d0c918527cb3ac60c5bc35d89cb3809d78b6
+SHA256 (openresolv-3.17.4.tar.gz) = 506937359aff4f5bb40f8646945aaf5647537f4040ec4988e334e03c3c126f6e
+SHA256 (openresolv#3.17.4-1.pkg.tar.gz) = d6235bafb6d6494525d7353d316e0d8ba1612dbb844bb408bbecb1d08e6d226c
diff --git a/core/openresolv/MAKEPKG b/core/openresolv/MAKEPKG
new file mode 100644
index 0000000..4c21a3c
--- /dev/null
+++ b/core/openresolv/MAKEPKG
@@ -0,0 +1,29 @@
+#!/bin/mkpkg
+# description: resolvconf implementation
+# url: https://github.com/NetworkConfiguration/openresolv
+
+name=openresolv
+version=3.17.4
+release=1
+depends=()
+source=(https://github.com/NetworkConfiguration/openresolv/archive/v$version/$name-$version.tar.gz)
+
+sha256sums=(
+ "506937359aff4f5bb40f8646945aaf5647537f4040ec4988e334e03c3c126f6e"
+)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/ --sbindir=/sbin --sysconfdir=/etc --libexecdir=/lib/resolvconf --mandir=/usr/share/man
+ make
+ make DESTDIR=$PKG install
+
+ rm -rf $PKG/lib/resolvconf/systemd-resolved
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh