unicode-ucd_12.1.0.bb 658 B

12345678910111213141516171819202122
  1. SUMMARY = "Unicode Character Database"
  2. HOMEPAGE = "https://unicode.org/ucd/"
  3. LICENSE = "MIT"
  4. LIC_FILES_CHKSUM = "file://../license.html;beginline=42;endline=85;md5=ddcaebcc17ab633995f12c383599f377"
  5. SRC_URI = " \
  6. https://www.unicode.org/Public/zipped/${PV}/UCD.zip;name=ucd;subdir=ucd \
  7. file://license.html \
  8. "
  9. SRC_URI[ucd.md5sum] = "430cbdac2615451571dd69a976dd08f6"
  10. SRC_URI[ucd.sha256sum] = "25ba51a0d4c6fa41047b7a5e5733068d4a734588f055f61e85f450097834a0a6"
  11. inherit allarch
  12. do_configure[noexec] = "1"
  13. do_install() {
  14. install -d ${D}${datadir}/unicode
  15. cp -rf ${WORKDIR}/ucd ${D}${datadir}/unicode
  16. }
  17. FILES_${PN} = "${datadir}/unicode/ucd"