aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/grep/grep-native_2.5.1.bb
blob: abc2ea46cb808947be2699cc4a0b7b608bced352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require grep_${PV}.bb
inherit native

S = "${WORKDIR}/grep-${PV}"

do_stage () {
	install -d ${STAGING_BINDIR}
	install -m 755 src/grep ${STAGING_BINDIR}
	install -m 755 src/egrep ${STAGING_BINDIR}
	install -m 755 src/fgrep ${STAGING_BINDIR}
}

FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/grep-${PV}"