45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
# Template file for 'execline'
|
|
pkgname=execline
|
|
version=2.5.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"
|
|
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=05205c6869ae65a51c63d0e805572573806f6474aa21e12c49dd5654d3ceed33
|
|
|
|
CFLAGS="-fPIC"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) makedepends+=" nsss-devel" configure_args+=" --enable-nsss" ;;
|
|
esac
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
vdoc README
|
|
vcopy "doc/*" usr/share/doc/${pkgname}
|
|
}
|
|
|
|
execline-doc_package() {
|
|
archs=noarch
|
|
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
|
|
}
|
|
}
|