opt/libtiff/Pkgfile

18 lines
437 B
Plaintext
Raw Normal View History

# Description: Library for manipulation of TIFF (Tag Image File Format) images
2024-04-08 07:20:27 +02:00
# URL: http://www.libtiff.org/
2021-04-20 19:20:36 +02:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libjpeg-turbo zlib
name=libtiff
2024-04-08 07:20:27 +02:00
version=4.6.0t
release=1
2024-04-08 07:20:27 +02:00
source=(http://www.libtiff.org/downloads/tiff-$version.tar.xz)
build() {
cd tiff-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,share/{doc,man/man1}}
}