forked from ports/compat-32
24 lines
537 B
Plaintext
24 lines
537 B
Plaintext
# Description: Library for manipulation of TIFF (Tag Image File Format) images
|
|
# URL: http://libtiff.maptools.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libjpeg-turbo-32 zlib-32 libtiff
|
|
|
|
name=libtiff-32
|
|
version=4.0.4beta
|
|
release=1
|
|
source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz)
|
|
|
|
build() {
|
|
cd tiff-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share,man}
|
|
}
|