blob: 8ef9af0cdc66865cd7c03ec44509021ea569d5fd (
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
|
# Description: Outils de resolution de nom DNS
# URL: http://www.isc.org/software/bind
# Maintainer: NuTyX core team
# Packager: fredjo
name=bind-utils
version=9.7.3
release=1
source=(http://ftp.isc.org/isc/bind9/$version/bind-$version.tar.gz)
build(){
cd bind-$version
./configure --prefix=/usr \
--mandir=/usr/share/man
make -C lib/dns
make -C lib/isc
make -C lib/bind9
make -C lib/isccfg
make -C lib/lwres
make -C bin/dig
make -C bin/dig DESTDIR=$PKG install
}
|