compat-32/libtiff-32/Pkgfile

23 lines
510 B
Plaintext
Raw Normal View History

# 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
2019-08-27 13:48:19 +02:00
# Depends on: libjpeg-turbo-32 libtiff zlib-32
name=libtiff-32
2021-01-02 15:19:49 +01:00
version=4.2.0
2015-01-27 11:00:53 +01:00
release=1
2018-11-11 01:58:04 +01:00
source=(https://download.osgeo.org/libtiff/tiff-$version.tar.gz)
build() {
2015-01-27 11:00:53 +01:00
cd tiff-$version
./configure \
--prefix=/usr \
2016-11-21 22:53:22 +01:00
--libdir=/usr/lib32
2015-06-25 11:21:22 +02:00
make
make DESTDIR=$PKG install
2015-01-27 11:00:53 +01:00
2016-11-21 22:53:22 +01:00
rm -r $PKG/usr/{bin,include,share/man,share}
}