00dcadcaae
remove the shlib entry since nothing uses it and it updates on every package update making it effectively useless
33 lines
975 B
Bash
33 lines
975 B
Bash
# Template file for 'facter'
|
|
pkgname=facter
|
|
version=3.12.0
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DRUBY_CONFIG_INCLUDE_DIR=${XBPS_CROSS_BASE}/usr/include"
|
|
hostmakedepends="ruby-devel"
|
|
makedepends="boost-devel cpp-hocon leatherman libblkid-devel libcurl-devel
|
|
ruby-devel yaml-cpp-devel libblkid-devel"
|
|
depends="net-tools ruby"
|
|
short_desc="Collect and display system facts"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="Apache-2.0"
|
|
homepage="http://puppetlabs.com/facter"
|
|
distfiles="http://downloads.puppetlabs.com/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=3b4950e0284154f448a47500905a078117006b48267996ea3795da51ccead198
|
|
|
|
if [ "$XBPS_GCC_VERSION_MAJOR" -ge 8 ]; then
|
|
CXXFLAGS+=" -Wno-catch-value -Wno-stringop-truncation"
|
|
fi
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
facter-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${makedepends} ${sourcepkg}-${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|