mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
a2719b02e1
WARNING: unicode-ucd-12.1.0-r0 do_fetch: Checksum mismatch for local file /home/bunk/yoctomaster/yocto-tmp/downloads/unicode.org.license.html Cleaning and trying again. WARNING: unicode-ucd-12.1.0-r0 do_fetch: Renaming /home/bunk/yoctomaster/yocto-tmp/downloads/unicode.org.license.html to /home/bunk/yoctomaster/yocto-tmp/downloads/unicode.org.license.html_bad-checksum_e9dd7d435db23241be3be21b5fca729b5cf883c8c039a70ea093031420d06abb WARNING: unicode-ucd-12.1.0-r0 do_fetch: Checksum failure encountered with download of https://www.unicode.org/license.html;name=license;subdir=unicode-ucd-12.1.0;downloadfilename=unicode.org.license.html - will attempt other sources if available This downloaded a license file from upstream. The upstream file did not match (copyright year changed). A stale copy was downloaded from a mirror instead and checked. The stale file with known contents never changes. Replace with a dummy check on a local copy of the license file. License checksum changed due to dos2unix conversion. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
658 B
BlitzBasic
23 lines
658 B
BlitzBasic
SUMMARY = "Unicode Character Database"
|
|
HOMEPAGE = "https://unicode.org/ucd/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://../license.html;beginline=42;endline=85;md5=ddcaebcc17ab633995f12c383599f377"
|
|
|
|
SRC_URI = " \
|
|
https://www.unicode.org/Public/zipped/${PV}/UCD.zip;name=ucd;subdir=ucd \
|
|
file://license.html \
|
|
"
|
|
SRC_URI[ucd.md5sum] = "430cbdac2615451571dd69a976dd08f6"
|
|
SRC_URI[ucd.sha256sum] = "25ba51a0d4c6fa41047b7a5e5733068d4a734588f055f61e85f450097834a0a6"
|
|
|
|
inherit allarch
|
|
|
|
do_configure[noexec] = "1"
|
|
|
|
do_install() {
|
|
install -d ${D}${datadir}/unicode
|
|
cp -rf ${WORKDIR}/ucd ${D}${datadir}/unicode
|
|
}
|
|
|
|
FILES_${PN} = "${datadir}/unicode/ucd"
|