37 lines
994 B
Bash
37 lines
994 B
Bash
# Template file for 's6-dns'
|
|
pkgname=s6-dns
|
|
version=2.3.1.1
|
|
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"
|
|
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/${pkgname}/"
|
|
distfiles="https://skarnet.org/software/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=415e3e8a8baaa39b3eac57eef8b3023d63bcdb33d9f9b03bcb298fd940589132
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
vdoc README
|
|
vcopy "doc/*" usr/share/doc/${pkgname}
|
|
}
|
|
|
|
s6-dns-doc_package() {
|
|
archs=noarch
|
|
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
|
|
}
|
|
}
|