Makefile 798 B

12345678910111213141516171819202122232425
  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:= 2
  7. PKG_MD5SUM:= 92258031d98d4f12dfc6a6d24057e672
  8. PKG_DESCR:= global search for a regular expression and print out matched lines
  9. PKG_SECTION:= utils
  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. CONFIGURE_ARGS+= --without-included-regex
  15. post-install:
  16. $(INSTALL_DIR) $(IDIR_GREP)/usr/bin
  17. $(INSTALL_BIN) $(WRKINST)/usr/bin/grep $(IDIR_GREP)/usr/bin
  18. include ${TOPDIR}/mk/pkg-bottom.mk