2007-10-08 21:30:52 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=giflib
|
2008-11-28 17:20:17 +00:00
|
|
|
PKG_VERSION:=4.1.6
|
2007-10-08 21:30:52 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2008-11-28 17:20:17 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=@SF/giflib
|
|
|
|
PKG_MD5SUM:=7125644155ae6ad33dbc9fc15a14735f
|
|
|
|
|
2012-10-19 15:36:24 +00:00
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
|
2012-06-11 21:18:33 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2010-12-10 23:47:41 +00:00
|
|
|
PKG_REMOVE_FILES:=autogen.sh aclocal.m4
|
2007-10-08 21:30:52 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/giflib
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=GIF libraries
|
2008-11-28 17:20:17 +00:00
|
|
|
URL:=http://sourceforge.net/projects/giflib
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/giflib/description
|
|
|
|
giflib is a library for reading and writing gif images.
|
|
|
|
It is API and ABI compatible with libungif which was in wide use while
|
|
|
|
the LZW compression algorithm was patented.
|
2007-10-08 21:30:52 +00:00
|
|
|
endef
|
|
|
|
|
2008-08-06 22:43:15 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
2012-08-06 16:23:19 +00:00
|
|
|
CONFIGURE_ARGS += --enable-x11=no
|
2007-10-08 21:30:52 +00:00
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/{lib,include}
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib/.libs/lib*so* $(1)/usr/lib
|
2009-03-01 00:56:29 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib/.libs/libgif.a $(1)/usr/lib
|
2007-10-08 21:30:52 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib/libgif.la $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib/*.h $(1)/usr/include/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/giflib/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib/.libs/lib*so* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,giflib))
|