contrib/openexr/Pkgfile

20 lines
599 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.
2007-01-09 09:55:28 +01:00
# URL: http://www.openexr.com/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: cmake
2007-01-09 09:55:28 +01:00
name=openexr
version=2.4.0
2007-01-09 09:55:28 +01:00
release=1
source=(https://github.com/AcademySoftwareFoundation/openexr/archive/v$version/$name-$version.tar.gz)
2007-01-09 09:55:28 +01:00
build() {
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
}