libungif.mk 890 B

1234567891011121314151617181920212223242526
  1. #############################################################
  2. #
  3. # libungif
  4. #
  5. #############################################################
  6. LIBUNGIF_VERSION:=4.1.4
  7. LIBUNGIF_SOURCE:=libungif-$(LIBUNGIF_VERSION).tar.bz2
  8. LIBUNGIF_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/giflib
  9. LIBUNGIF_INSTALL_STAGING = YES
  10. LIBUNGIF_INSTALL_TARGET = YES
  11. LIBUNGIF_CONF_OPT = --without-x
  12. LIBUNGIF_BINS = gif2epsn gif2ps gif2rgb gif2x11 gifasm gifbg gifburst gifclip \
  13. gifclrmp gifcolor gifcomb gifcompose giffiltr giffix gifflip \
  14. gifhisto gifinfo gifinter gifinto gifovly gifpos gifrotat \
  15. gifrsize gifspnge giftext gifwedge icon2gif raw2gif rgb2gif \
  16. text2gif
  17. define LIBUNGIF_BINS_CLEANUP
  18. rm -f $(addprefix $(TARGET_DIR)/usr/bin/,$(LIBUNGIF_BINS))
  19. endef
  20. LIBUNGIF_POST_INSTALL_TARGET_HOOKS += LIBUNGIF_BINS_CLEANUP
  21. $(eval $(call AUTOTARGETS,package,libungif))