blob: 845ba56853efe652e3cdaebae4e8db0e390934f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= grep
PKG_VERSION:= 3.11
PKG_RELEASE:= 1
PKG_HASH:= 1db2aedde89d0dea42b16d9528f894c8d15dae4e190b59aecc78f5a951276eab
PKG_DESCR:= global search for a regex
PKG_SECTION:= base/tools
PKG_DEPENDS:= libpcre
PKG_BUILDDEP:= pcre
HOST_BUILDDEP:= pcre-host
PKG_URL:= http://www.gnu.org/software/grep/
PKG_SITES:= ${MASTER_SITE_GNU:=grep/}
PKG_NOPARALLEL:= 1
PKG_BB:= 1
include $(ADK_TOPDIR)/mk/host.mk
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call HOST_template,GREP,grep,$(PKG_VERSION)-${PKG_RELEASE}))
$(eval $(call PKG_template,GREP,grep,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
grep-install:
$(INSTALL_DIR) $(IDIR_GREP)/bin
$(INSTALL_BIN) $(WRKINST)/usr/bin/{e,f,}grep \
$(IDIR_GREP)/bin
include ${ADK_TOPDIR}/mk/host-bottom.mk
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|