summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 99327f8bcfdff8f6804de41e112c8026797f445b (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: 
pkgname=localdns-git
pkgver=0.1
pkgrel=1
pkgdesc="With this package the user is able to define a wrapper around DNS resolution with which one can define some fake dns adresses that will be mapped to a specific device on a local network identified by a mac address."
arch=(x86_64)
url="https://github.com/TETRX/local-dns-dump"
license=('GPL')
depends=('python>=3' 'python-dnslib')
makedepends=('git' 'make' 'gcc>=10')
source=("git+$url#branch=master")
md5sums=('SKIP')


build() {
	cd "local-dns-dump"
	make local_dns
}

package() {
	cd "local-dns-dump"
	make DESTDIR="$pkgdir" install
}