Improved code to install dump1090 binary in net/dump1090 and hostname symlinks in net/hostname Removed code that manually discards static archives in net/php Miscellaneous SHA512 checksum updates and minor fixes in several net pkg build files
37 lines
843 B
Text
Executable file
37 lines
843 B
Text
Executable file
app=bindutils
|
|
version=9.16.2
|
|
build=1sml
|
|
homepage="https://www.isc.org/bind/"
|
|
download="https://ftp.isc.org/isc/bind9/$version/bind-$version.tar.xz"
|
|
desc="domain utility collection packaged separately from BIND source"
|
|
requires="libxml2 openssl libuv"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf bind-$version
|
|
|
|
tar xf $srcdir/bind-$version.tar.?z
|
|
cd bind-$version
|
|
fixbuilddirpermissions
|
|
|
|
./configure \
|
|
--prefix="" \
|
|
--sysconfdir=/etc \
|
|
--without-readline \
|
|
--without-libjson \
|
|
--without-python
|
|
|
|
for i in dns isc bind9 isccfg irs ; do
|
|
make -C lib/$i
|
|
done
|
|
|
|
make -C bin/dig install DESTDIR="$pkg"
|
|
|
|
cp COPYRIGHT LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
486aa4fd204fa4dcf48fa190a04fc15df84cb8b85397d58bdb96d86389eb1dde44fb76153b42a1ac2d47d5a3f19eda540c74198d0691a7bef8fda9878fdf4926 bind-9.16.2.tar.lz
|
|
"
|