38 lines
977 B
Bash
38 lines
977 B
Bash
# Template file for 'tiff'
|
|
pkgname=tiff
|
|
version=4.0.10
|
|
revision=2
|
|
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=2c52d11ccaf767457db0c46795d9c7d1a8d8f76f68b0b800a3dfe45786b996e4
|
|
|
|
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
|
|
}
|
|
}
|