f38c36f5c4
git-svn-id: svn://svn.openwrt.org/openwrt/packages@18686 3c298f89-4303-0410-b956-a3cf2f4a3e73
67 lines
1.4 KiB
Makefile
67 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# blogic@openwrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tiff
|
|
PKG_VERSION:=3.9.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://download.osgeo.org/libtiff
|
|
PKG_MD5SUM:=93e56e421679c591de7552db13384cb8
|
|
PKG_FIXUP:=libtool
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
PKG_INSTALL=1
|
|
|
|
define Package/tiff/Default
|
|
TITLE:=TIFF
|
|
URL:=http://www.remotesensing.org/libtiff/
|
|
endef
|
|
|
|
define Package/libtiff
|
|
$(call Package/tiff/Default)
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE+= libraries
|
|
DEPENDS:=+zlib +libjpeg
|
|
endef
|
|
|
|
define Package/tiff-utils
|
|
$(call Package/tiff/Default)
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE+= utilities
|
|
DEPENDS:=+libtiff
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
CONFIGURE_ARGS += --without-x
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/{lib,include}
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib* $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
endef
|
|
|
|
define Package/libtiff/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/tiff-utils/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libtiff))
|
|
$(eval $(call BuildPackage,tiff-utils))
|