blob: b99a3e7b77d439db45ce09a31ba32e9dd38e75af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=zonenotify
pkgver=0.1
pkgrel=2
pkgdesc="Utility to send NS_NOTIFY packets to slave DNS servers"
arch="all"
url="http://www.morettoni.net/zonenotify.en.html"
license='BSD'
depends=""
source="http://www.morettoni.net/bsd/$pkgname-$pkgver.tar.gz"
build() {
cd "$srcdir/$pkgname"
make || return 1
install -D zonenotify "$pkgdir"/usr/bin/zonenotify
}
md5sums="1cb15b505eaa22440c7a26ea34af2514 zonenotify-0.1.tar.gz"
|