Matt Housh
2ef4201132
From openexr.com: This maintenance release addresses the reported OpenEXR security vulnerabilities, specifically CVE-2017-9110, CVE-2017-9111, CVE-2017-9112, CVE-2017-9113, CVE-2017-9114, CVE-2017-9115, CVE-2017-9116.
20 lines
553 B
Plaintext
20 lines
553 B
Plaintext
# Description: A high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.
|
|
# URL: http://www.openexr.com/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: ilmbase
|
|
|
|
name=openexr
|
|
version=2.2.1
|
|
release=1
|
|
source=(http://download.savannah.nongnu.org/releases/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
CONFIG_SHELL=/bin/bash \
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/doc
|
|
}
|