diff options
author | Lukc <lukc@upyum.com> | 2010-12-11 19:15:23 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-11 19:15:35 +0100 |
commit | 6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch) | |
tree | b5e6da6d95b9a1235d82032b509b80483a886ff5 /bindutils/Pkgfile.old | |
download | base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2 base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip |
Engagement initial.
Diffstat (limited to 'bindutils/Pkgfile.old')
-rw-r--r-- | bindutils/Pkgfile.old | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bindutils/Pkgfile.old b/bindutils/Pkgfile.old new file mode 100644 index 0000000..4abbe3c --- /dev/null +++ b/bindutils/Pkgfile.old @@ -0,0 +1,25 @@ +# Description: Bind tools +# URL: http://www.isc.org/software/bind +# Maintainer: CRUX System Team, core-ports at crux dot nu +# Depends on: openssl + +name=bindutils +version=9.7.1 +release=1 +source=(ftp://ftp.isc.org/isc/bind9/$version/bind-$version.tar.gz) + +build() { + cd bind-$version + + ./configure --prefix=/usr \ + --disable-linux-caps \ + --with-libxml2=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/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 +} |