0a5e5534cb
Now that those values are passed at the autotools infrastructure level, there's no need for every package to pass inconsistent values. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
541 B
Makefile
22 lines
541 B
Makefile
#############################################################
|
|
#
|
|
# tiff
|
|
#
|
|
#############################################################
|
|
TIFF_VERSION:=3.9.4
|
|
TIFF_SITE:=ftp://ftp.remotesensing.org/pub/libtiff
|
|
TIFF_SOURCE:=tiff-$(TIFF_VERSION).tar.gz
|
|
TIFF_INSTALL_STAGING = YES
|
|
TIFF_INSTALL_TARGET = YES
|
|
TIFF_CONF_OPT = \
|
|
--disable-cxx \
|
|
--without-x \
|
|
|
|
TIFF_DEPENDENCIES = host-pkg-config zlib jpeg
|
|
|
|
define TIFF_INSTALL_TARGET_CMDS
|
|
-cp -a $(@D)/libtiff/.libs/libtiff.so* $(TARGET_DIR)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS,package,tiff))
|