blob: 6bbb763d1ac190b2e94d16f55c3c3c08cb109489 (
plain)
1 # Description: A high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.
2 # URL: http://www.openexr.com/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: cmake
5
6 name=openexr
7 version=2.4.0
8 release=1
9 source=(https://github.com/AcademySoftwareFoundation/openexr/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 mkdir build && cd build
13 cmake ../$name-$version \
14 -DCMAKE_INSTALL_PREFIX=/usr \
15 -DCMAKE_INSTALL_LIBDIR=/usr/lib
16 make
17 make DESTDIR=$PKG install
18 rm -r $PKG/usr/share/doc
19 }
|