mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
The TZ database has moved, it's now hosted by IANA. (From OE-Core rev: 6ab99189cd30c89e23bb00a77489eb36331f8c6a) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
902 B
BlitzBasic
25 lines
902 B
BlitzBasic
DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
|
|
LICENSE = "PD"
|
|
PR = "r0"
|
|
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=3ae8198f82258417ce29066d3b034035"
|
|
|
|
SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode \
|
|
http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata"
|
|
|
|
SRC_URI[tzcode.md5sum] = "cf7f4335b7c8682899fa2814e711c1b2"
|
|
SRC_URI[tzcode.sha256sum] = "f0dd991de3f8d6c599c104e294377c9befa1ef40aa5a1d09e2e295a453f3c1ec"
|
|
SRC_URI[tzdata.md5sum] = "c7a86ec34f30f8d6aa77ef94902a3047"
|
|
SRC_URI[tzdata.sha256sum] = "f8dde7ca5e61f21ac34c8cdbef5568d00c829981211098f059d8104964c81ffa"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit native
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}/
|
|
install -m 755 zic ${D}${bindir}/
|
|
install -m 755 zdump ${D}${bindir}/
|
|
install -m 755 tzselect ${D}${bindir}/
|
|
}
|