void-packages/srcpkgs/execline/template
2022-03-13 23:23:03 +01:00

51 lines
1.3 KiB
Bash

# Template file for 'execline'
pkgname=execline
version=2.8.3.0
revision=1
build_style=configure
configure_args="--libdir=/usr/lib --bindir=/usr/bin
--with-sysdeps=${XBPS_CROSS_BASE}/usr/lib/skalibs/sysdeps
--with-lib=${XBPS_CROSS_BASE}/usr/lib
$(vopt_if static --enable-static-libc)"
makedepends="skalibs-devel"
short_desc="Non-interactive scripting language"
maintainer="mobinmob <mobinmob@disroot.org>"
license="ISC"
homepage="https://skarnet.org/software/execline/"
changelog="https://skarnet.org/software/execline/upgrade.html"
distfiles="https://skarnet.org/software/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=235dbecd594c82e0523c87c2eacf04c48781b39264158f57049f1a1ff8b4ad80
CFLAGS="-fPIC"
build_options="static"
case "$XBPS_TARGET_MACHINE" in
*-musl)
makedepends+=" nsss-devel"
configure_args+=" --enable-nsss --with-include=${XBPS_CROSS_BASE}/usr/include/nsss"
;;
esac
post_install() {
vlicense COPYING
vdoc README
vcopy "doc/*" usr/share/doc/${pkgname}
}
execline-doc_package() {
short_desc+=" - Documentation"
depends="${sourcepkg}>=${version}_${revision} execline-man-pages"
pkg_install() {
vmove usr/share/doc
}
}
execline-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib
}
}