void-packages/srcpkgs/ilmbase/template

39 lines
1,006 B
Bash

# Template file for 'ilmbase'
pkgname=ilmbase
version=2.2.1
revision=2
build_style=gnu-configure
short_desc="Base libraries from ILM for OpenEXR"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="BSD"
homepage="http://www.openexr.com"
distfiles="${NONGNU_SITE}/openexr/$pkgname-$version.tar.gz"
checksum=cac206e63be68136ef556c2b555df659f45098c159ce24804e9d5e9e0286609e
LDFLAGS="-lpthread"
pre_build() {
if [ -n "$CROSS_BUILD" ]; then
# Copy shell script header generators - slow but working
cp ${FILESDIR}/*.sh ${wrksrc}/Half
sed -i Half/Makefile \
-e "/eLut.h: eLut/s;$;.sh;" \
-e "s;\./eLut > eLut.h;sh eLut.sh > eLut.h;" \
-e "/toFloat.h: toFloat/s;$;.sh;" \
-e "s;\./toFloat > toFloat.h;sh toFloat.sh > toFloat.h;"
fi
}
post_install() {
vlicense COPYING
}
ilmbase-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
}
}