Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= tiff
  5. PKG_VERSION:= 4.7.1
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= f698d94f3103da8ca7438d84e0344e453fe0ba3b7486e04c5bf7a9a3fabe9b69
  8. PKG_DESCR:= library for reading/writing tiff images
  9. PKG_SECTION:= libs/image
  10. PKG_NEEDS:= c++
  11. PKG_BUILDDEP:= zlib
  12. PKG_URL:= http://simplesystems.org/libtiff/
  13. PKG_SITES:= http://download.osgeo.org/libtiff/
  14. PKG_LIBNAME:= libtiff
  15. PKG_OPTS:= dev
  16. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  17. include ${ADK_TOPDIR}/mk/host.mk
  18. include ${ADK_TOPDIR}/mk/package.mk
  19. $(eval $(call HOST_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE}))
  20. $(eval $(call PKG_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  21. libtiff-install:
  22. ${INSTALL_DIR} ${IDIR_LIBTIFF}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libtiff.so* ${IDIR_LIBTIFF}/usr/lib/
  24. include ${ADK_TOPDIR}/mk/host-bottom.mk
  25. include ${ADK_TOPDIR}/mk/pkg-bottom.mk