void-packages/srcpkgs/ilmbase/template
Jürgen Buchmüller e4dae813f1 ilmbase: update to 2.4.0
Use qemu-user-static to run binaries for the target.

[ci skip]
2019-12-06 13:49:52 +01:00

35 lines
913 B
Bash

# Template file for 'ilmbase'
pkgname=ilmbase
version=2.4.0
revision=1
wrksrc="openexr-${version}"
build_wrksrc=IlmBase
build_style=cmake
build_helper="qemu"
short_desc="Base libraries from ILM for OpenEXR"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause"
homepage="https://www.openexr.com/"
distfiles="https://github.com/openexr/openexr/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
checksum=4904c5ea7914a58f60a5e2fbc397be67e7a25c380d7d07c1c31a3eefff1c92f1
pre_configure() {
if [ "$CROSS_BUILD" ]; then
vsed -i Half/CMakeLists.txt \
-e "s; COMMAND ; COMMAND qemu-${XBPS_TARGET_QEMU_MACHINE}-static ;g"
fi
}
post_install() {
vlicense ../LICENSE.md
}
ilmbase-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/cmake
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}