39 lines
1,006 B
Bash
39 lines
1,006 B
Bash
# Template file for 'ilmbase'
|
|
pkgname=ilmbase
|
|
version=2.2.0
|
|
revision=3
|
|
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=ecf815b60695555c1fbc73679e84c7c9902f4e8faa6e8000d2f905b8b86cedc7
|
|
|
|
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
|
|
}
|
|
}
|