40 lines
1015 B
Bash
40 lines
1015 B
Bash
# Template file for 's6-dns'
|
|
pkgname=s6-dns
|
|
version=2.3.5.5
|
|
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="Orphaned <orphan@voidlinux.org>"
|
|
license="ISC"
|
|
homepage="https://skarnet.org/software/s6-dns"
|
|
distfiles="${homepage}/${pkgname}-${version}.tar.gz"
|
|
checksum=56979b5d5125c38071a80b5e3df0d4a6b2a7c52bb863a2410b6e3d797ffe1ee8
|
|
|
|
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
|
|
}
|
|
}
|