mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
28 lines
815 B
BlitzBasic
28 lines
815 B
BlitzBasic
SUMMARY = "Install a Debian system into a subdirectory"
|
|
HOMEPAGE = "https://wiki.debian.org/Debootstrap"
|
|
SECTION = "devel"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://debian/copyright;md5=e7b45429ef05610abf91ac199fdb3a6e"
|
|
|
|
SRC_URI = "\
|
|
${DEBIAN_MIRROR}/main/d/debootstrap/debootstrap_${PV}.tar.gz \
|
|
file://0001-support-to-override-usr-sbin-and-usr-share.patch \
|
|
file://0002-support-to-override-usr-bin-arch-test.patch \
|
|
file://0003-do-not-hardcode-the-full-path-of-dpkg.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "334b188c2bab5c1aa6f858a044274631d342f07f5ddec1bad870d728f02fd652"
|
|
|
|
S = "${UNPACKDIR}/debootstrap"
|
|
|
|
DEPENDS = " \
|
|
virtual/fakeroot-native \
|
|
"
|
|
|
|
fakeroot do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
chown -R root:root ${D}${datadir}/debootstrap
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|