diff options
| author | Joe Slater <jslater@windriver.com> | 2013-03-18 13:46:51 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-19 11:54:22 +0000 |
| commit | 79ec8e2711442eb7882ad7db7d3ab97f96484daa (patch) | |
| tree | 6eddb21106d20444a8ceafe81409646cb608d1e5 /meta/recipes-extended/tzcode/tzcode-native_2013b.bb | |
| parent | 6c9743d9b9754db97b3447d6d3e172c828aa0185 (diff) | |
| download | poky-79ec8e2711442eb7882ad7db7d3ab97f96484daa.tar.gz | |
tzcode & tzdata: update to 2013b versions
Rename and modifying existing recipes to use 2013b
versions of time zone.
(From OE-Core rev: ba748709ff01f9a0ea9b1671d509c971a271ed2f)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/tzcode/tzcode-native_2013b.bb')
| -rw-r--r-- | meta/recipes-extended/tzcode/tzcode-native_2013b.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-extended/tzcode/tzcode-native_2013b.bb b/meta/recipes-extended/tzcode/tzcode-native_2013b.bb new file mode 100644 index 0000000000..114aa9c932 --- /dev/null +++ b/meta/recipes-extended/tzcode/tzcode-native_2013b.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect" | ||
| 2 | LICENSE = "PD" | ||
| 3 | |||
| 4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=d7a19b8c6d8a28785c4cd04ff2e46d27" | ||
| 5 | |||
| 6 | # note that we allow for us to use data later than our code version | ||
| 7 | # | ||
| 8 | SRC_URI =" ftp://ftp.iana.org/tz/releases/tzcode${PV}.tar.gz;name=tzcode \ | ||
| 9 | ftp://ftp.iana.org/tz/releases/tzdata2013b.tar.gz;name=tzdata" | ||
| 10 | |||
| 11 | SRC_URI[tzcode.md5sum] = "c8bb91ce60092ef61d628d104ad3dab1" | ||
| 12 | SRC_URI[tzcode.sha256sum] = "fda9a8bd15f06939f0ecd1edba17d5e66d4d526632145609574459b250ab0efb" | ||
| 13 | SRC_URI[tzdata.md5sum] = "489dbca77d1f2e287a3987ca047bb246" | ||
| 14 | SRC_URI[tzdata.sha256sum] = "70d589d0e76a3749403d2bb404e9214c2520dda4c13e4b07b1b945ed2c64edb2" | ||
| 15 | |||
| 16 | S = "${WORKDIR}" | ||
| 17 | |||
| 18 | inherit native | ||
| 19 | |||
| 20 | do_install () { | ||
| 21 | install -d ${D}${bindir}/ | ||
| 22 | install -m 755 zic ${D}${bindir}/ | ||
| 23 | install -m 755 zdump ${D}${bindir}/ | ||
| 24 | install -m 755 tzselect ${D}${bindir}/ | ||
| 25 | } | ||
