blob: 800df991140a84712dff1aa7b2d5b146c68ba806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: suienzan <suienzan at gmail dot com>
_pkgname=mosdns
pkgname=${_pkgname}-bin
pkgver=3.1.0
pkgrel=1
pkgdesc="Plug-in configured DNS forwarder/server"
arch=('x86_64')
url="https://github.com/IrineSistiana/mosdns/"
license=('GPL3')
optdepends=('v2ray-domain-list-community: geosite.dat'
'v2ray-geoip: geoip.dat'
'v2ray-rules-dat-git: geosite.dat & geoip.dat')
backup=('etc/mosdns/config.yaml')
provides=('mosdns')
conflicts=('mosdns' 'mosdns-git')
source=("$pkgname-$pkgver.zip::https://github.com/IrineSistiana/mosdns/releases/download/v${pkgver}/mosdns-linux-amd64.zip")
sha256sums=('e9ca43d42f05776db8b8fca65838c24ac2106c97454086e91c8ce8d1c7a9c0e0')
package() {
install -Dm755 mosdns "$pkgdir"/usr/bin/mosdns
install -Dm644 ../service "$pkgdir"/usr/lib/systemd/system/mosdns.service
install -Dm644 ../config.yaml "$pkgdir"/etc/mosdns/config.yaml
}
|