🔒 Repository is read-only – file editing is disabled.

recipes/utils/ldns/PAGBUILD.yaml main

36 linii Raw ← Powrót
123456789101112131415161718192021222324252627282930313233343536
pkgname: ldns
pkgver: '1.9.2'
pkgrel: '1'
pkgdesc: 'Fast DNS library with the goal to simplify DNS programming.'
url: 'https://www.nlnetlabs.nl'
arch: x86_64
depends: []
makedepends:
- openssl
- libcap
- python
- swig
- doxygen

source:
- 'https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}

  ./configure \
  	--prefix=/usr \
  	--sysconfdir=/etc \
  	--localstatedir=/var \
  	--disable-rpath \
  	--with-drill \
  	--with-examples \
  	--with-trust-anchor=/etc/trusted-key.key
  make
  make DESTDIR=${PKGDIR} install

package: |
  true