summaryrefslogtreecommitdiff
path: root/core/openresolv/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'core/openresolv/MAKEPKG')
-rw-r--r--core/openresolv/MAKEPKG29
1 files changed, 29 insertions, 0 deletions
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