void-packages/srcpkgs/execline/template
Érico Rolim cef9579baf execline: update to 2.6.1.1, remove noarch.
Update for nsss headers location.
2020-10-09 01:46:53 -03:00

54 lines
1.3 KiB
Bash

# Template file for 'execline'
pkgname=execline
version=2.6.1.1
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"
makedepends="skalibs-devel"
short_desc="Non-interactive scripting language"
maintainer="bougyman <bougyman@voidlinux.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=394308f0349f962086a9695ca2bb5ef32cd38e5be6b7cec0b3d0cf35a2b2ba56
CFLAGS="-fPIC"
build_options="static"
if [ "$build_option_static" ]; then
CFLAGS="-static"
LDFLAGS="-static"
fi
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}"
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
}
}