Fix libtiff install.
[openwrt/svn-archive/archive.git] / libs / tiff / Makefile
1 #
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # blogic@openwrt.org
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=tiff
12 PKG_VERSION:=3.8.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://libtiff.maptools.org/dl/
17 PKG_MD5SUM:=fbb6f446ea4ed18955e2714934e5b698
18 PKG_FIXUP:=libtool
19
20 include $(INCLUDE_DIR)/package.mk
21
22 PKG_INSTALL=1
23
24 define Package/libtiff
25 SECTION:=libs
26 CATEGORY:=Libraries
27 TITLE:=TIFF libraries
28 DEPENDS:=+zlib +libjpeg
29 endef
30
31 TARGET_CFLAGS += $(FPIC)
32
33 CONFIGURE_ARGS += --without-x
34
35 define Build/InstallDev
36 $(INSTALL_DIR) $(1)/usr/{lib,include}
37 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib* $(1)/usr/lib
38 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
39 endef
40
41 define Package/libtiff/Install
42 $(INSTALL_DIR) $(1)/usr/lib
43 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*so* $(1)/usr/lib/
44 endef
45
46 $(eval $(call BuildPackage,libtiff))