aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6bde55a7285f1f5428eebbe3e62804589ab79282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: James An <james@jamesan.ca>

pkgname=systemd-resolved-public-dns
pkgver=1
pkgrel=1
pkgdesc="Config files defining public DNS for systemd's DNS resolver"
arch=('any')
url="https://github.com/jamesan/aur-pkgs/tree/master/$pkgname"
license=('GPL')
source=(
    comodo-secure-dns.conf
    dns-advantage.conf
    google-public-dns.conf
    norton-dns.conf
    opendns.conf
)
md5sums=(
    'f1b6009234ac60f118ee92d332efc00b'
    '92ae9aef034229d1ae1a7356760dc5b0'
    '203d64932780362d88b881a7b986872a'
    '1aafbfd2514aa39351d38c266085e320'
    '910578ec675036e85cf493a9bfd2afb0'
)

package() {
    for CONF in *.conf; do
        install -Dm644 "$CONF" "$pkgdir/usr/lib/systemd/resolved.conf.d/$CONF"
    done
}