mirror of
https://git.yoctoproject.org/poky
synced 2026-03-29 23:02:20 +02:00
I've cleaned up some odd license fields, fixed some license names and corrected some incorrect licenses. LICENSE really needs a pass through by the maintainers as some of the licensing is incorrect. Also, every license with Artistic should be gone through and noted as which version of Artistic. (From OE-Core rev: 4786ecdf7cd427089464dcb62579110d494e7cd7) Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
521 B
BlitzBasic
20 lines
521 B
BlitzBasic
DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
|
|
LICENSE = "PD"
|
|
PR = "r0"
|
|
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=3ae8198f82258417ce29066d3b034035"
|
|
|
|
SRC_URI = "ftp://elsie.nci.nih.gov/pub/tzcode${PV}.tar.gz \
|
|
ftp://elsie.nci.nih.gov/pub/tzdata2009s.tar.gz"
|
|
|
|
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}/
|
|
}
|