opt/libtiff/Pkgfile

18 lines
460 B
Plaintext
Raw Normal View History

# Description: Library for manipulation of TIFF (Tag Image File Format) images
2017-01-13 18:01:38 +01:00
# URL: http://www.simplesystems.org/libtiff
2021-01-23 13:14:19 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libjpeg-turbo zlib
name=libtiff
2020-12-20 14:28:58 +01:00
version=4.2.0
release=1
2020-12-20 14:28:58 +01:00
source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz)
build() {
cd tiff-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,share/{doc,man/man1}}
}