Makefile 989 B

1234567891011121314151617181920212223242526272829
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= findutils
  5. PKG_VERSION:= 4.4.2
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 351cc4adb07d54877fa15f75fb77d39f
  8. PKG_DESCR:= GNU utilities for finding files
  9. PKG_SECTION:= utils
  10. PKG_DEPENDS:= libpthread
  11. PKG_URL:= http://www.gnu.org/software/findutils/
  12. PKG_SITES:= http://ftp.gnu.org/pub/gnu/findutils/
  13. include $(TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,FINDUTILS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_ENV+= gl_cv_func_wcwidth_works=yes
  16. post-install:
  17. $(INSTALL_DIR) $(IDIR_FINDUTILS)/usr/bin $(IDIR_FINDUTILS)/usr/libexec
  18. $(INSTALL_BIN) $(WRKINST)/usr/bin/{find,locate,oldfind,updatedb,xargs} \
  19. $(IDIR_FINDUTILS)/usr/bin
  20. $(INSTALL_BIN) $(WRKINST)/usr/libexec/{bigram,code,frcode} \
  21. $(IDIR_FINDUTILS)/usr/libexec
  22. include ${TOPDIR}/mk/pkg-bottom.mk