summaryrefslogtreecommitdiff
path: root/core/openresolv/MAKEPKG
blob: 4c21a3c308f0cdc3a22f103f62ab4cfb7890b8b5 (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
#!/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