blob: 99713a4059300c0666349d9a28f23b6d644b85e8 (
plain)
1 # Description: Library for manipulation of TIFF (Tag Image File Format) images
2 # URL: http://libtiff.maptools.org/
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: libjpeg-turbo-32 zlib-32 libtiff
5
6 name=libtiff-32
7 version=4.0.7
8 release=1
9 source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz)
10
11 build() {
12 cd tiff-$version
13
14 ./configure \
15 --prefix=/usr \
16 --libdir=/usr/lib32
17
18 make
19 make DESTDIR=$PKG install
20
21 rm -r $PKG/usr/{bin,include,share/man,share}
22 }
|