contrib/openexr/Pkgfile

22 lines
694 B
Plaintext
Raw Normal View History

# Description: A high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.
2020-06-01 17:45:48 +02:00
# URL: https://www.openexr.com/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: cmake
2007-01-09 09:55:28 +01:00
name=openexr
2020-06-17 00:38:50 +02:00
version=2.5.2
2007-01-09 09:55:28 +01:00
release=1
source=(https://github.com/AcademySoftwareFoundation/openexr/archive/v$version/$name-$version.tar.gz \
2020-06-17 00:38:50 +02:00
openexr-pkg-config.patch)
2007-01-09 09:55:28 +01:00
build() {
patch -d $name-$version -p1 -i $SRC/$name-pkg-config.patch
mkdir build && cd build
cmake ../$name-$version \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
2007-01-09 09:55:28 +01:00
}