diff options
| author | Khem Raj <raj.khem@gmail.com> | 2018-06-14 20:31:05 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-06-16 08:51:38 -0700 |
| commit | c8f3816f826b305a7d1ec669c0ee9fdbbd945775 (patch) | |
| tree | 4946af5b300ca998c4a2acc774f025efb7ec8910 /meta-networking/recipes-support/htpdate/htpdate_1.2.0.bb | |
| parent | ea97e324877c97f18f2825ee629fdf519fdf2397 (diff) | |
| download | meta-openembedded-c8f3816f826b305a7d1ec669c0ee9fdbbd945775.tar.gz | |
htpdate: Add recipe
Fix build with musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Andreas Müller <schnitzeltony@gmail.com>
Acked-by: Andreas Müller <schnitzeltony@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/htpdate/htpdate_1.2.0.bb')
| -rw-r--r-- | meta-networking/recipes-support/htpdate/htpdate_1.2.0.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/htpdate/htpdate_1.2.0.bb b/meta-networking/recipes-support/htpdate/htpdate_1.2.0.bb new file mode 100644 index 0000000000..eb6787846b --- /dev/null +++ b/meta-networking/recipes-support/htpdate/htpdate_1.2.0.bb | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | # Copyright (C) 2018 Khem Raj <raj.khem@gmail.com> | ||
| 2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 3 | |||
| 4 | SUMMARY = "HTTP based time synchronization tool" | ||
| 5 | |||
| 6 | DESCRIPTION = "The HTTP Time Protocol (HTP) is used to synchronize a computer's time with\ | ||
| 7 | web servers as reference time source. This program can be used instead\ | ||
| 8 | ntpdate or similar, in networks that has a firewall blocking the NTP port.\ | ||
| 9 | Htpdate will synchronize the computer time to Greenwich Mean Time (GMT),\ | ||
| 10 | using the timestamps from HTTP headers found in web servers response (the\ | ||
| 11 | HEAD method will be used to get the information).\ | ||
| 12 | Htpdate works through proxy servers. Accuracy of htpdate will be usually\ | ||
| 13 | within 0.5 seconds (better with multiple servers).\ | ||
| 14 | " | ||
| 15 | |||
| 16 | HOMEPAGE = "http://www.vervest.org/htp/" | ||
| 17 | |||
| 18 | LICENSE = "GPL-2.0+" | ||
| 19 | LIC_FILES_CHKSUM = "file://htpdate.c;beginline=26;endline=30;md5=d7018a4d2c5a6eab392709a05e5e168a" | ||
| 20 | |||
| 21 | SRC_URI = "http://www.vervest.org/htp/archive/c/htpdate-${PV}.tar.xz \ | ||
| 22 | file://0001-Make-environment-variables-assignments-to-be-weak.patch \ | ||
| 23 | file://0001-Replace-ntp_adjtime-with-adjtimex.patch \ | ||
| 24 | " | ||
| 25 | SRC_URI[md5sum] = "9d5ca69be06edf5d535b52b5f790da4e" | ||
| 26 | SRC_URI[sha256sum] = "22b2cf3ec45b0eedecddd3ad2a3d754ac57942ae7dcbac410d254935f0bdbc03" | ||
| 27 | |||
| 28 | do_configure () { | ||
| 29 | : | ||
| 30 | } | ||
| 31 | |||
| 32 | do_compile () { | ||
| 33 | oe_runmake | ||
| 34 | } | ||
| 35 | |||
| 36 | do_install () { | ||
| 37 | oe_runmake install 'INSTALL=install' 'STRIP=echo' 'DESTDIR=${D}' | ||
| 38 | } | ||
| 39 | |||
