20 lines
232 B
Bash
20 lines
232 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
set -e
|
||
|
|
||
|
ldns=$(dirname $(realpath $0))
|
||
|
cd $ldns
|
||
|
|
||
|
libtoolize --copy
|
||
|
autoheader
|
||
|
autoconf
|
||
|
./configure --prefix= --exec-prefix=/usr
|
||
|
|
||
|
cd $ldns/drill
|
||
|
autoheader
|
||
|
autoconf
|
||
|
./configure --prefix= --exec-prefix=/usr
|