mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 20:39:39 +01:00
The updated README now mentions that some files are derived from BSD, so update the LICENSE to be PD & BSD. (From OE-Core rev: 063f67f5ecbe6edc226e1a25b5b8387881592c34) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
929 B
BlitzBasic
27 lines
929 B
BlitzBasic
DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
|
|
LICENSE = "PD & BSD"
|
|
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=0b7570113550eb5d30aa4bd220964b8f"
|
|
|
|
# note that we allow for us to use data later than our code version
|
|
#
|
|
SRC_URI =" ftp://ftp.iana.org/tz/releases/tzcode${PV}.tar.gz;name=tzcode \
|
|
ftp://ftp.iana.org/tz/releases/tzdata2013g.tar.gz;name=tzdata"
|
|
|
|
SRC_URI[tzcode.md5sum] = "cc2a52297310ba1a673dc60973ea3ad8"
|
|
SRC_URI[tzcode.sha256sum] = "c7c358b459bb65cfab7b7bdd6a9689233fc393f1f9fdf4f0f46ca7dac5a9587b"
|
|
|
|
SRC_URI[tzdata.md5sum] = "76dbc3b5a81913fc0d824376c44a5d15"
|
|
SRC_URI[tzdata.sha256sum] = "b6cdd3998dcc732a6ae5e101e1394f9d4d6dff68bd48a8fb78c44c2b997d3a4f"
|
|
|
|
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}/
|
|
}
|