Makefile 986 B

1234567891011121314151617181920212223242526272829303132
  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:= grep
  5. PKG_VERSION:= 2.5.4
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 92258031d98d4f12dfc6a6d24057e672
  8. PKG_DESCR:= global search for a regular expression and print out matched lines
  9. PKG_SECTION:= text
  10. PKG_URL:= http://www.gnu.org/software/grep/
  11. PKG_SITES:= ftp://ftp.gnu.org/gnu/grep/
  12. include $(TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,GREP,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. #CONFIG_STYLE:= manual
  15. # use following to add ./configure options
  16. #CONFIGURE_ARGS+= --disable-foo
  17. # overwrite any configure variables
  18. #CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes
  19. #BUILD_STYLE:= manual
  20. #INSTALL_STYLE:= manual
  21. post-install:
  22. $(INSTALL_DIR) $(IDIR_GREP)/usr/bin
  23. $(INSTALL_BIN) $(WRKINST)/usr/bin/grep \
  24. $(IDIR_GREP)/usr/bin
  25. include ${TOPDIR}/mk/pkg-bottom.mk