acl.mk 844 B

12345678910111213141516171819202122232425262728
  1. #############################################################
  2. #
  3. # acl
  4. #
  5. #############################################################
  6. ACL_VERSION = 2.2.51
  7. ACL_SOURCE = acl-$(ACL_VERSION).src.tar.gz
  8. ACL_SITE = http://download.savannah.gnu.org/releases/acl
  9. ACL_INSTALL_STAGING = YES
  10. ACL_DEPENDENCIES = attr
  11. ACL_CONF_OPT = --enable-gettext=no
  12. # While the configuration system uses autoconf, the Makefiles are
  13. # hand-written and do not use automake. Therefore, we have to hack
  14. # around their deficiencies by passing installation paths.
  15. ACL_INSTALL_STAGING_OPT = \
  16. prefix=$(STAGING_DIR)/usr \
  17. exec_prefix=$(STAGING_DIR)/usr \
  18. PKG_DEVLIB_DIR=$(STAGING_DIR)/usr/lib \
  19. install-dev install-lib
  20. ACL_INSTALL_TARGET_OPT = \
  21. prefix=$(TARGET_DIR)/usr \
  22. exec_prefix=$(TARGET_DIR)/usr \
  23. install install-lib
  24. $(eval $(call AUTOTARGETS))