diff options
author | Jaap de Jong <jaap.dejong@nedap.com> | 2009-11-12 16:49:01 +0100 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2009-11-12 17:01:42 +0000 |
commit | 2ece13c424c6512ade9dc327a3b0e45eb5e87a60 (patch) | |
tree | 01b8396c7814b997a41ff00c5e456b5505024aaf /recipes | |
parent | 3297ada06fcadf3135590f79274d1ca7bef4fc5d (diff) |
Precision Time Protocol (PTP) as defined by the IEEE 1588 standard
Hi there,
attached a proposal for a recipe for building the
Precision Time Protocol daemon (ptpd).
Suggestions by Michael Smith:
>
> You are also missing the addition to checksums.ini, and maybe a line to
> install the manpage so the doc package gets built.
>
are hacked into it
Jaap de Jong
Precision Time protocol (IEEE 1588)
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/ptpd/ptpd_1.0.0.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/ptpd/ptpd_1.0.0.bb b/recipes/ptpd/ptpd_1.0.0.bb new file mode 100644 index 0000000000..89889135e0 --- /dev/null +++ b/recipes/ptpd/ptpd_1.0.0.bb @@ -0,0 +1,16 @@ +# ptpd build file +LICENSE="BSD" +DESCRIPTION="Precision Time Protocol (PTP) as defined by the IEEE 1588 standard" +HOMEPAGE="http://sourceforge.net/projects/ptpd" + +SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz" + +S="${WORKDIR}/ptpd-${PV}/src" +PR = "r0" + +do_install() { + install -d ${D}${bindir} ${D}${mandir}/man8 + install -m 4555 ptpd ${D}${bindir} + install -m 644 ptpd.8 ${D}${mandir}/man8 +} + |