bindutils: moved to opt

This commit is contained in:
Juergen Daubert 2020-06-25 17:18:42 +00:00
parent 484cd2a920
commit 7b50fb35dd
3 changed files with 0 additions and 42 deletions

View File

@ -1,9 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/dig
-rwxr-xr-x root/root usr/bin/host
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/dig.1.gz
-rw-r--r-- root/root usr/share/man/man1/host.1.gz

View File

@ -1,5 +0,0 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqkKJ/XBDtfMhUDZmAuUdnghf6VlFb/g8I1RFH3WZNkKu010vp+FXIP94ghUYfxPdDKyJw63Za8W0BOZilHh63Ao=
SHA256 (Pkgfile) = 2c49f8c8dfb8d784f4bedb3fde7b1385fb38631a398545bc41424271e48d9155
SHA256 (.footprint) = fe2eae0024893c6bb5976b6039f2ba2c14978ea1f583b8c5a4e9a68ab785503e
SHA256 (bind-9.14.12.tar.gz) = 9c4de493bf7dfaa68b0273135369601d474175ab504ab572ffbb42a6db6ef4c8

View File

@ -1,28 +0,0 @@
# Description: Bind tools
# URL: http://www.isc.org/software/bind
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: openssl zlib
name=bindutils
version=9.14.12
release=1
source=(https://ftp.isc.org/isc/bind9/$version/bind-$version.tar.gz)
build() {
cd bind-$version
./configure --prefix=/usr \
--disable-linux-caps \
--with-libxml2=no \
--with-libjson=no \
--with-gssapi=no \
--with-python=no
make -C lib
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/share/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/share/man/man1/dig.1
}