20 lines
538 B
Plaintext
20 lines
538 B
Plaintext
# Description: Library for manipulation of TIFF (Tag Image File Format) images
|
|
# URL: http://www.remotesensing.org/libtiff/
|
|
# Maintainer: Per Lidén, core-ports at crux dot nu
|
|
# Depends on: libjpeg, zlib
|
|
|
|
name=libtiff
|
|
version=3.8.2
|
|
release=2
|
|
source=(ftp://ftp.remotesensing.org/pub/libtiff/tiff-$version.tar.gz \
|
|
$name-$version.patch)
|
|
|
|
build() {
|
|
cd tiff-$version
|
|
patch -p1 < $SRC/$name-$version.patch
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/{bin,share,man/man1}
|
|
}
|