summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/tzcode/tzcode-native_2011i.bb
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2011-08-31 22:13:54 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-02 18:15:30 +0100
commit380f38cfdfc98665896633bcd4b869562e8aca7c (patch)
treef593c86e0e7fcece5ef2e0ebe53a03db700f674e /meta/recipes-extended/tzcode/tzcode-native_2011i.bb
parentc4fbcc5d629d9ccf685dd9ea321686268d1b9986 (diff)
downloadpoky-380f38cfdfc98665896633bcd4b869562e8aca7c.tar.gz
tzcode: Update to 2011i
(From OE-Core rev: 2c0c78fc777a7dbe098f2518ecbaf24d03227f5d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/tzcode/tzcode-native_2011i.bb')
-rw-r--r--meta/recipes-extended/tzcode/tzcode-native_2011i.bb24
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 @@
1DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
2LICENSE = "PD"
3PR = "r0"
4
5LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=3ae8198f82258417ce29066d3b034035"
6
7SRC_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
10SRC_URI[tzcode.md5sum] = "cf7f4335b7c8682899fa2814e711c1b2"
11SRC_URI[tzcode.sha256sum] = "f0dd991de3f8d6c599c104e294377c9befa1ef40aa5a1d09e2e295a453f3c1ec"
12SRC_URI[tzdata.md5sum] = "c7a86ec34f30f8d6aa77ef94902a3047"
13SRC_URI[tzdata.sha256sum] = "f8dde7ca5e61f21ac34c8cdbef5568d00c829981211098f059d8104964c81ffa"
14
15S = "${WORKDIR}"
16
17inherit native
18
19do_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}