fd9ff4fedf
To simplify testing for the currently used gcc version introduce global environment variables to avoid running `gcc --version`.
61 lines
1.5 KiB
Bash
61 lines
1.5 KiB
Bash
# Template file for 'openexr'
|
|
pkgname=openexr
|
|
version=2.2.0
|
|
revision=3
|
|
build_style=gnu-configure
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.openexr.com/"
|
|
license="BSD"
|
|
short_desc="High dynamic-range (HDR) image file format"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="ilmbase-devel zlib-devel"
|
|
distfiles="${NONGNU_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum="36a012f6c43213f840ce29a8b182700f6cf6b214bea0d5735594136b44914231"
|
|
|
|
LDFLAGS="-lrt"
|
|
|
|
if [ ${XBPS_GCC_VERSION_MAJOR} -gt 5 ]; then
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) # gcc6 fails with internal error
|
|
CFLAGS="-Os"
|
|
CXXFLAGS="-Os"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
post_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# Don't try to rebuild these header files when cross compiling
|
|
# in the hope the shipped tables are ok to use as is.
|
|
sed -i ${wrksrc}/IlmImf/Makefile \
|
|
-e "/BUILT_SOURCES = /s;b44ExpLogTable.h dwaLookups.h;;" \
|
|
-e "/CLEANFILES = /s; b44ExpLogTable.h;;" \
|
|
-e "/CLEANFILES = /s; dwaLookups.h;;" \
|
|
-e "/b44ExpLogTable.h: b44ExpLogTable/d" \
|
|
-e "/\.\/b44ExpLogTable > b44ExpLogTable.h/d" \
|
|
-e "/dwaLookups.h: dwaLookups/d" \
|
|
-e "/\.\/dwaLookups > dwaLookups.h/d"
|
|
fi
|
|
}
|
|
|
|
post_install(){
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libopenexr_package() {
|
|
short_desc+=" - runtime libraries"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so.*
|
|
}
|
|
}
|
|
libopenexr-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${makedepends} libopenexr>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share
|
|
}
|
|
}
|