43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# Template file for 's6-rc'
|
|
pkgname=s6-rc
|
|
version=0.5.1.1
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--prefix=/usr --libdir=/usr/lib --includedir=/usr/include
|
|
--with-sysdeps=${XBPS_CROSS_BASE}/usr/lib/skalibs/sysdeps
|
|
--with-lib=${XBPS_CROSS_BASE}/usr/lib"
|
|
makedepends="execline-devel skalibs-devel s6-devel"
|
|
depends="s6>=2.9.0.0_1 execline>=2.5.2.0_1"
|
|
short_desc="Service manager of the s6 init system"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="ISC"
|
|
homepage="https://skarnet.org/software/s6-rc/"
|
|
changelog="https://skarnet.org/software/s6-rc/upgrade.html"
|
|
distfiles="https://skarnet.org/software/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=257e2c428336c2b57cd17b65382bc55592759acc65e053e23ad646444f28af52
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
vdoc README
|
|
vcopy "doc/*" usr/share/doc/${pkgname}
|
|
vmkdir usr/share/examples/${pkgname}
|
|
vcopy "examples/source/*" usr/share/examples/${pkgname}/
|
|
}
|
|
|
|
s6-rc-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
}
|
|
}
|
|
|
|
s6-rc-doc_package() {
|
|
archs=noarch
|
|
short_desc+=" - documentation"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|