38 lines
976 B
Bash
38 lines
976 B
Bash
# Template file for 'tiff'
|
|
pkgname=tiff
|
|
version=4.1.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-cxx --without-x"
|
|
hostmakedepends="automake libtool"
|
|
makedepends="zlib-devel libjpeg-turbo-devel liblzma-devel"
|
|
short_desc="Library and tools for reading and writing TIFF data files"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="libtiff"
|
|
homepage="http://libtiff.maptools.org/"
|
|
distfiles="http://download.osgeo.org/libtiff/tiff-${version}.tar.gz"
|
|
checksum=5d29f32517dadb6dbcd1255ea5bbc93a2b54b94fbf83653b4d65c7d6775b8634
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
for f in ${DESTDIR}/usr/share/man/man3/*.3tiff; do
|
|
mv ${f} ${f%tiff}
|
|
done
|
|
vlicense COPYRIGHT
|
|
}
|
|
|
|
tiff-devel_package() {
|
|
depends="${makedepends} tiff>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/man/man3
|
|
vmove usr/share/doc
|
|
}
|
|
}
|