contrib/openexr/Pkgfile

27 lines
599 B
Plaintext
Raw Normal View History

2007-01-09 09:55:28 +01:00
# Description: High dynamic-range (HDR) image file format library.
# URL: http://www.openexr.com/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2008-04-09 16:23:58 +02:00
# Packager: Jose V Beneyto, sepen at users dot sourceforge dot net
2007-01-09 09:55:28 +01:00
# Depends on: ilmbase
name=openexr
2007-10-27 01:32:06 +02:00
version=1.6.1
2007-01-09 09:55:28 +01:00
release=1
2008-10-14 08:52:56 +02:00
source=(http://download.savannah.nongnu.org/releases/openexr/openexr-$version.tar.gz
openexr-1.6.1-gcc43.patch)
2007-01-09 09:55:28 +01:00
build() {
2007-04-01 11:31:55 +02:00
cd openexr-$version
2007-08-04 11:57:23 +02:00
2008-10-14 08:52:56 +02:00
patch -p 1 -i $SRC/openexr-1.6.1-gcc43.patch
2007-01-09 09:55:28 +01:00
./configure \
--prefix=/usr \
2007-10-27 01:32:06 +02:00
--disable-static
2007-08-04 11:57:23 +02:00
2007-01-09 09:55:28 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}