Merge branch 'master' of git+ssh://openadk.org/git/openadk
[openadk.git] / package / libtiff / Makefile
blobd71353a971f3f11a89f513b3c5a816fbd38e67fa
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include ${ADK_TOPDIR}/rules.mk
6 PKG_NAME:= tiff
7 PKG_VERSION:= 3.9.4
8 PKG_RELEASE:= 4
9 PKG_HASH:= 67b76d075fb74f7cb32e7e4b217701674755fe6cee0f463b259a753fce691da6
10 PKG_DESCR:= library for reading/writing tiff images
11 PKG_DEPENDS:= libstdcxx
12 PKG_SECTION:= libs/image
13 PKG_URL:= http://www.libtiff.org/
14 PKG_SITES:= ftp://ftp.remotesensing.org/pub/libtiff/
15 PKG_LIBNAME:= libtiff
16 PKG_OPTS:= dev
18 DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
20 include ${ADK_TOPDIR}/mk/package.mk
22 $(eval $(call PKG_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
24 CONFIGURE_ARGS+= --disable-cxx \
25 --disable-rpath
27 libtiff-install:
28 ${INSTALL_DIR} ${IDIR_LIBTIFF}/usr/lib
29 ${CP} ${WRKINST}/usr/lib/libtiff.so* ${IDIR_LIBTIFF}/usr/lib/
31 include ${ADK_TOPDIR}/mk/pkg-bottom.mk