blob: be67f5b3c7b73757a5a7c6dd7be497a3ba3e86bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require genext2fs.inc
PR = "r3"
SRC_URI = "${DEBIAN_MIRROR}/main/g/genext2fs/genext2fs_${PV}.orig.tar.gz \
file://misc.patch;patch=1"
S = "${WORKDIR}/genext2fs-${PV}.orig"
do_compile () {
oe_runmake
}
NATIVE_INSTALL_WORKS = "1"
do_install () {
oe_runmake 'DESTDIR=${D}' install
}
BBCLASSEXTEND = "native"
|