36 lines
957 B
Bash
36 lines
957 B
Bash
# Template build file for 'tiff'.
|
|
pkgname=tiff
|
|
version=4.0.7
|
|
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="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="BSD"
|
|
homepage="http://libtiff.maptools.org/"
|
|
distfiles="http://download.osgeo.org/libtiff/tiff-${version}.tar.gz"
|
|
checksum=9f43a2cfb9589e5cecaa66e16bf87f814c945f22df7ba600d63aac4632c4f019
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
post_install() {
|
|
for f in ${DESTDIR}/usr/share/man/man3/*.3tiff; do
|
|
mv ${f} ${f%tiff}
|
|
done
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|