| 1234567891011121314151617181920212223242526272829303132 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${ADK_TOPDIR}/rules.mk
- PKG_NAME:= tiff
- PKG_VERSION:= 4.7.1
- PKG_RELEASE:= 1
- PKG_HASH:= f698d94f3103da8ca7438d84e0344e453fe0ba3b7486e04c5bf7a9a3fabe9b69
- PKG_DESCR:= library for reading/writing tiff images
- PKG_SECTION:= libs/image
- PKG_NEEDS:= c++
- PKG_BUILDDEP:= zlib
- PKG_URL:= http://simplesystems.org/libtiff/
- PKG_SITES:= http://download.osgeo.org/libtiff/
- PKG_LIBNAME:= libtiff
- PKG_OPTS:= dev
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
- include ${ADK_TOPDIR}/mk/host.mk
- include ${ADK_TOPDIR}/mk/package.mk
- $(eval $(call HOST_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE}))
- $(eval $(call PKG_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
- libtiff-install:
- ${INSTALL_DIR} ${IDIR_LIBTIFF}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libtiff.so* ${IDIR_LIBTIFF}/usr/lib/
- include ${ADK_TOPDIR}/mk/host-bottom.mk
- include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|