klish.mk 664 B

1234567891011121314151617181920212223242526272829
  1. #############################################################
  2. #
  3. # klish
  4. #
  5. #############################################################
  6. KLISH_VERSION = 1.6.9
  7. KLISH_SOURCE = klish-$(KLISH_VERSION).tar.bz2
  8. KLISH_SITE = http://libcode.org/attachments/download/45
  9. KLISH_DEPENDENCIES =
  10. KLISH_CONF_OPT = --disable-gpl --without-tcl
  11. ifeq ($(BR2_PACKAGE_LIBROXML),y)
  12. KLISH_DEPENDENCIES += libroxml
  13. KLISH_CONF_OPT += --with-libroxml
  14. endif
  15. ifeq ($(BR2_PACKAGE_LIBXML2),y)
  16. KLISH_DEPENDENCIES += libxml2
  17. KLISH_CONF_OPT += --with-libxml2
  18. endif
  19. ifeq ($(BR2_PACKAGE_EXPAT),y)
  20. KLISH_DEPENDENCIES += expat
  21. KLISH_CONF_OPT += --with-libexpat
  22. endif
  23. $(eval $(autotools-package))