# Template file for 'vigra'
pkgname=vigra
version=1.11.1
revision=8
build_style=cmake
configure_args="-DWITH_OPENEXR=1"
hostmakedepends="python3"
makedepends="libpng-devel tiff-devel libjpeg-turbo-devel zlib-devel fftw-devel
 boost-devel libopenexr-devel imath-devel"
short_desc="Image processing and analysis library"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="MIT"
homepage="https://ukoethe.github.io/vigra/"
distfiles="https://github.com/ukoethe/vigra/archive/Version-${version//./-}.tar.gz"
checksum=b2718250d28baf1932fcbe8e30f7e4d146e751ad0e726e375a72a0cdb4e3250e
make_check=no # all tests fail with: [Unknown system error -8] Process not started
python_version=3

pre_configure() {
	if [ "$CROSS_BUILD" ]; then
		g++ config/output_cplusplus_version.cxx -o gccbugcheck
		sed "s#%OUTPUT%#$(./gccbugcheck)#" $FILESDIR/TryRunResults.cmake > TryRunResults.cmake
		configure_args+=" -C $PWD/TryRunResults.cmake"
	fi
}

post_install() {
	vlicense LICENSE.txt
	vmkdir usr/share/$pkgname
	mv $DESTDIR/usr/doc $DESTDIR/usr/share/$pkgname/doc
}

vigra-doc_package() {
	depends="vigra>=${version}_${revision}"
	short_desc+=" - documentation"
	pkg_install() {
		vmove usr/share/vigra/doc
	}
}

vigra-devel_package() {
	# vigra-config is python script
	depends="vigra>=${version}_${revision} $makedepends python3"
	short_desc+=" - development files"
	pkg_install() {
		vmove usr/bin
		vmove usr/include
		vmove usr/lib/vigra
		vmove "usr/lib/*.so"
	}
}
