mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
2d5d25fa44
The closest thing to a license is found in the http://metadata.ftp-master.debian.org/changelogs/main/d/debootstrap/debootstrap_1.0.92_copyright The verbage looks very close to MIT so seems reasonable make to change the license to MIT instead of creating a custom entry for debootstrap-custom-license. This follows what Redhat, Mandriva and Suse have for this package. (see rpmfind) the difference between the MIT and the copyright files are: -This package was debianized by Anthony Towns <ajt@debian.org> on -Tue, 30 Jan 2001 10:54:45 +1000. - -It was written from scratch for Debian by Anthony Towns <ajt@debian.org> -based loosely on the code for constructing base tarballs as part of the -boot-floppies package. - -Copyright: - -Copyright (c) 2001-2005 Anthony Towns +Copyright <YEAR> <COPYRIGHT HOLDER> will fix: WARNING: debootstrap-1.0.67-r0 do_populate_lic: debootstrap: No generic license file exists for: debootstrap-custom-license in any provider Signed-off-by: Armin Kuster <akuster808@gmail.com>
36 lines
1.0 KiB
BlitzBasic
36 lines
1.0 KiB
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=1e68ced6e1689d4cd9dac75ff5225608"
|
|
|
|
inherit pkgconfig
|
|
|
|
SRC_URI = "\
|
|
http://http.debian.net/debian/pool/main/d/debootstrap/debootstrap_1.0.67.tar.gz \
|
|
file://devices.tar.gz;unpack=0 \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "eacabfe2e45415af60b1d74c3a23418a"
|
|
SRC_URI[sha256sum] = "0a12e0a2bbff185d47711a716b1f2734856100e8784361203e834fed0cffa51b"
|
|
|
|
S = "${WORKDIR}/${BP}"
|
|
|
|
# All Makefile does is creation of devices.tar.gz, which fails in OE build, we use
|
|
# static devices.tar.gz as work around
|
|
# | NOTE: make -j 8 -e MAKEFLAGS=
|
|
# | rm -rf dev
|
|
# | mkdir -p dev
|
|
# | chown 0:0 dev
|
|
# | chown: changing ownership of `dev': Operation not permitted
|
|
# | make: *** [devices.tar.gz] Error 1
|
|
# | WARNING: exit code 1 from a shell command.
|
|
do_compile_prepend() {
|
|
cp ${WORKDIR}/devices.tar.gz ${B}
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
chown -R root:root ${D}${datadir}/debootstrap
|
|
}
|