opt/libtiff/Pkgfile
2013-08-28 18:13:16 +02:00

23 lines
748 B
Plaintext

# Description: Library for manipulation of TIFF (Tag Image File Format) images
# URL: http://www.remotesensing.org/libtiff/
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: libjpeg, zlib
name=libtiff
version=4.0.3
release=3
source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz \
gif2tiff-buffer-overflow.patch tiff2pdf_use-after-free.patch lzw-oob-write.patch)
build() {
cd tiff-$version
patch -d tools -p0 -i $SRC/tiff2pdf_use-after-free.patch
patch -d tools -p0 -i $SRC/gif2tiff-buffer-overflow.patch
patch -d tools -p0 -i $SRC/lzw-oob-write.patch
./configure --prefix=/usr --mandir=/usr/man
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/{bin,share,man/man1}
}