39 lines
1,011 B
Bash
39 lines
1,011 B
Bash
# Template file for 's6-dns'
|
|
pkgname=s6-dns
|
|
version=2.3.5.2
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--prefix=/usr --libdir=/usr/lib
|
|
--with-sysdeps=${XBPS_CROSS_BASE}/usr/lib/skalibs/sysdeps
|
|
--with-lib=${XBPS_CROSS_BASE}/usr/lib
|
|
$(vopt_if static --enable-static-libc)"
|
|
makedepends="execline-devel skalibs-devel"
|
|
short_desc="Suite of DNS client programs and libraries for Unix systems"
|
|
maintainer="lemmi <lemmi@nerd2nerd.org>"
|
|
license="ISC"
|
|
homepage="https://skarnet.org/software/s6-dns"
|
|
distfiles="${homepage}/${pkgname}-${version}.tar.gz"
|
|
checksum=dca3f38a33310e7b848b10cf9f1fcaa43fdac480c53de67f8edcdc9daffc9f59
|
|
|
|
build_options="static"
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
vdoc README
|
|
vcopy "doc/*" usr/share/doc/${pkgname}
|
|
}
|
|
|
|
s6-dns-doc_package() {
|
|
short_desc+=" - documentation"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
s6-dns-devel_package() {
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
}
|
|
}
|