enscript.mk 554 B

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