mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-15 11:03:23 +00:00
The original tarball URL is no longer valid, as it has been moved to an archive location. This update points to the new location. Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
28 lines
851 B
BlitzBasic
28 lines
851 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 = "\
|
|
https://snapshot.debian.org/archive/debian/20250101T203853Z/pool/main/d/${BPN}/${BPN}_${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] = "c95eb2aeb952b3fd09f4a07859115d40c4d04a8d551b3071b0a10fcd0db7ebc4"
|
|
|
|
S = "${WORKDIR}/debootstrap"
|
|
|
|
DEPENDS = " \
|
|
virtual/fakeroot-native \
|
|
"
|
|
|
|
fakeroot do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
chown -R root:root ${D}${datadir}/debootstrap
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|