22 lines
606 B
Plaintext
22 lines
606 B
Plaintext
|
# Description: Library for manipulation of TIFF (Tag Image File Format) images
|
||
|
# URL: http://www.simplesystems.org/libtiff/
|
||
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
||
|
# Depends on: libjpeg-turbo-32 zlib-32
|
||
|
|
||
|
name=libtiff4-32
|
||
|
version=3.9.7
|
||
|
release=1
|
||
|
source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz
|
||
|
libtiff4-soname.patch)
|
||
|
|
||
|
build() {
|
||
|
cd tiff-$version
|
||
|
patch -Np1 -i $SRC/libtiff4-soname.patch
|
||
|
./autogen.sh
|
||
|
./configure --prefix=/usr \
|
||
|
--libdir=/usr/lib32
|
||
|
make
|
||
|
make DESTDIR=$PKG -C libtiff install
|
||
|
rm -rf $PKG/usr/{bin,include,lib32/libtiff{,xx}.{la,a,so},share}
|
||
|
}
|