core/bindutils/Pkgfile

21 lines
598 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Bind tools
# URL: http://www.isc.org/index.pl?/sw/bind/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: openssl
name=bindutils
2007-11-29 09:03:55 +01:00
version=9.4.2
2006-02-23 16:26:10 +01:00
release=1
source=(ftp://ftp.isc.org/isc/bind9/$version/bind-$version.tar.gz)
build() {
cd bind-$version
./configure --prefix=/usr
make -j1 -C lib
2006-02-23 16:26:10 +01:00
make -C bin/dig
install -D -m 755 bin/dig/host $PKG/usr/bin/host
install -D -m 644 bin/dig/host.1 $PKG/usr/man/man1/host.1
install -D -m 755 bin/dig/dig $PKG/usr/bin/dig
install -D -m 644 bin/dig/dig.1 $PKG/usr/man/man1/dig.1
}