From: Rosen Penev Date: Sun, 18 Aug 2019 23:40:00 +0000 (-0700) Subject: giflib: Add utilities package X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=3f19592ef9e494b361fdf48b6857d1bc63ff9f3b;p=openwrt-packages.git giflib: Add utilities package As requested in #9756 Signed-off-by: Rosen Penev --- diff --git a/libs/giflib/Makefile b/libs/giflib/Makefile index 6897c1c96..b59e37ffe 100644 --- a/libs/giflib/Makefile +++ b/libs/giflib/Makefile @@ -39,6 +39,17 @@ define Package/giflib/description the LZW compression algorithm was patented. endef +define Package/giflib-utils + SECTION:=utils + CATEGORY:=Utilities + TITLE:=GIF utilities + URL:=https://sourceforge.net/projects/giflib +endef + +define Package/giflib-utils/description + These are the utilities that come with giflib. +endef + TARGET_CFLAGS += -ffunction-sections -fdata-sections $(FPIC) TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed @@ -59,5 +70,11 @@ define Package/giflib/install $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgif.so* $(1)/usr/lib endef +define Package/giflib-utils/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin +endef + $(eval $(call HostBuild)) $(eval $(call BuildPackage,giflib)) +$(eval $(call BuildPackage,giflib-utils))