Makefile 954 B

12345678910111213141516171819202122232425262728293031
  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.0.4
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 8cb1d90c96f61cdfc0bcf036acc251c9dbe6320334da941c7a83cfe1576ef890
  8. PKG_DESCR:= library for reading/writing tiff images
  9. PKG_SECTION:= libs/image
  10. PKG_NEEDS:= c++
  11. PKG_URL:= http://www.libtiff.org/
  12. PKG_SITES:= ftp://ftp.remotesensing.org/pub/libtiff/
  13. PKG_LIBNAME:= libtiff
  14. PKG_OPTS:= dev
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  16. include ${ADK_TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. CONFIGURE_ARGS+= --disable-cxx \
  19. --disable-rpath
  20. libtiff-install:
  21. ${INSTALL_DIR} ${IDIR_LIBTIFF}/usr/lib
  22. ${CP} ${WRKINST}/usr/lib/libtiff.so* ${IDIR_LIBTIFF}/usr/lib/
  23. include ${ADK_TOPDIR}/mk/pkg-bottom.mk