diff options
Diffstat (limited to 'meta/recipes-extended/tzcode/tzcode-native_2011i.bb')
-rw-r--r-- | meta/recipes-extended/tzcode/tzcode-native_2011i.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-extended/tzcode/tzcode-native_2011i.bb b/meta/recipes-extended/tzcode/tzcode-native_2011i.bb new file mode 100644 index 0000000000..0cdf4007ec --- /dev/null +++ b/meta/recipes-extended/tzcode/tzcode-native_2011i.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect" | ||
2 | LICENSE = "PD" | ||
3 | PR = "r0" | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=3ae8198f82258417ce29066d3b034035" | ||
6 | |||
7 | SRC_URI = "ftp://elsie.nci.nih.gov/pub/tzcode${PV}.tar.gz;name=tzcode \ | ||
8 | ftp://elsie.nci.nih.gov/pub/tzdata2011i.tar.gz;name=tzdata" | ||
9 | |||
10 | SRC_URI[tzcode.md5sum] = "cf7f4335b7c8682899fa2814e711c1b2" | ||
11 | SRC_URI[tzcode.sha256sum] = "f0dd991de3f8d6c599c104e294377c9befa1ef40aa5a1d09e2e295a453f3c1ec" | ||
12 | SRC_URI[tzdata.md5sum] = "c7a86ec34f30f8d6aa77ef94902a3047" | ||
13 | SRC_URI[tzdata.sha256sum] = "f8dde7ca5e61f21ac34c8cdbef5568d00c829981211098f059d8104964c81ffa" | ||
14 | |||
15 | S = "${WORKDIR}" | ||
16 | |||
17 | inherit native | ||
18 | |||
19 | do_install () { | ||
20 | install -d ${D}${bindir}/ | ||
21 | install -m 755 zic ${D}${bindir}/ | ||
22 | install -m 755 zdump ${D}${bindir}/ | ||
23 | install -m 755 tzselect ${D}${bindir}/ | ||
24 | } | ||