blob: db6190d2be5bacd38f6f245f65bc80603cd72d60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $Id$
#-
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include ${TOPDIR}/rules.mk
PKG_NAME:= libtiff
PKG_VERSION:= 3.8.2
PKG_RELEASE:= 1
PKG_MD5SUM:= fbb6f446ea4ed18955e2714934e5b698
MASTER_SITES:= ftp://ftp.remotesensing.org/pub/libtiff/
DISTFILES:= tiff-${PKG_VERSION}.tar.gz
WRKDIST= ${WRKDIR}/tiff-${PKG_VERSION}
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,LIBTIFF,libtiff,${PKG_VERSION}-${PKG_RELEASE}))
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --disable-cxx
BUILD_STYLE= auto
INSTALL_STYLE= auto
post-install:
${INSTALL_DIR} ${IDIR_LIBTIFF}/usr/lib
${CP} ${WRKINST}/usr/lib/libtiff.so.* ${IDIR_LIBTIFF}/usr/lib/
include ${TOPDIR}/mk/pkg-bottom.mk
|