enscript.mk 523 B

12345678910111213141516171819
  1. ################################################################################
  2. #
  3. # enscript
  4. #
  5. ################################################################################
  6. ENSCRIPT_VERSION = 1.6.6
  7. ENSCRIPT_SITE = $(BR2_GNU_MIRROR)/enscript
  8. ENSCRIPT_LICENSE = GPLv3+
  9. ENSCRIPT_LICENSE_FILES = COPYING
  10. # Enable pthread threads if toolchain supports threads
  11. ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
  12. ENSCRIPT_CONF_OPT += --enable-threads=pth
  13. else
  14. ENSCRIPT_CONF_OPT += --disable-threads
  15. endif
  16. $(eval $(autotools-package))