mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
39 lines
845 B
YAML
39 lines
845 B
YAML
distributable:
|
|
url: https://nlnetlabs.nl/downloads/ldns/ldns-{{ version }}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: NLnetLabs/ldns/tags
|
|
|
|
dependencies:
|
|
openssl.org: ^1
|
|
|
|
build:
|
|
dependencies:
|
|
gnu.org/autoconf: '*'
|
|
gnu.org/automake: '*'
|
|
swig.org: '*'
|
|
script: |
|
|
autoreconf
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }} install
|
|
|
|
# Oddly, the man pages are read-only, messing
|
|
# up our build process
|
|
find "{{ prefix }}"/share/man -type f -print0 | xargs -0 chmod u+w
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
- --with-drill
|
|
- --with-ssl={{ deps.openssl.org.prefix }}
|
|
- --disable-dane-verify
|
|
- --without-xcode-sdk
|
|
# weirdly, drill needs this to find `config.h`
|
|
CFLAGS: "$CFLAGS -I$(pwd)/ldns"
|
|
|
|
provides:
|
|
- bin/drill
|
|
- bin/ldns-config
|
|
|
|
test: drill tea.xyz
|