Makefile 842 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:= grep
  5. PKG_VERSION:= 2.14
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= d4a3f03849d1e17ce56ab76aa5a24cab
  8. PKG_DESCR:= global search for a regex and print out matched lines
  9. PKG_SECTION:= utils
  10. PKG_DEPENDS:= libpcre libiconv
  11. PKG_BUILDDEP:= pcre
  12. PKG_URL:= http://www.gnu.org/software/grep/
  13. PKG_SITES:= ftp://ftp.gnu.org/gnu/grep/
  14. PKG_NOPARALLEL:= 1
  15. PKG_BB:= 1
  16. include $(TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,GREP,grep,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. TARGET_LDFLAGS+= -liconv
  19. grep-install:
  20. $(INSTALL_DIR) $(IDIR_GREP)/bin
  21. $(INSTALL_BIN) $(WRKINST)/usr/bin/{e,f,}grep $(IDIR_GREP)/bin
  22. include ${TOPDIR}/mk/pkg-bottom.mk