From 3058643b4c8d43f5203305f5449a2032513e2977 Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 16 Jul 2009 06:22:37 +0000 Subject: [PATCH] [packages] tiff: add a tiff-utils subpackage git-svn-id: svn://svn.openwrt.org/openwrt/packages@16855 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- libs/tiff/Makefile | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/libs/tiff/Makefile b/libs/tiff/Makefile index 398961b40..1b24cd0a0 100644 --- a/libs/tiff/Makefile +++ b/libs/tiff/Makefile @@ -21,12 +21,25 @@ 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:=TIFF libraries + TITLE+= libraries DEPENDS:=+zlib +libjpeg - URL:=http://www.remotesensing.org/libtiff/ +endef + +define Package/tiff-utils +$(call Package/tiff/Default) + SECTION:=utils + CATEGORY:=Utilities + TITLE+= utilities + DEPENDS:=+libtiff endef TARGET_CFLAGS += $(FPIC) @@ -44,4 +57,10 @@ define Package/libtiff/install $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so.* $(1)/usr/lib/ endef +define Package/tiff-utils/install + $(INSTALL_DIR) $(1)/usr/bin + $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ +endef + $(eval $(call BuildPackage,libtiff)) +$(eval $(call BuildPackage,tiff-utils)) -- 2.11.0