diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-11-12 18:29:35 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-11-12 18:29:35 +0100 |
commit | 58b64b531900ef438a2d4b90cc1c10550d30862b (patch) | |
tree | ef0eb9c15b3fe2c45b039e6eee4ca741758107cc /recipes/ptpd | |
parent | 2ece13c424c6512ade9dc327a3b0e45eb5e87a60 (diff) |
ptpd: stylize
Diffstat (limited to 'recipes/ptpd')
-rw-r--r-- | recipes/ptpd/ptpd_1.0.0.bb | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/recipes/ptpd/ptpd_1.0.0.bb b/recipes/ptpd/ptpd_1.0.0.bb index 89889135e0..a5263a07ef 100644 --- a/recipes/ptpd/ptpd_1.0.0.bb +++ b/recipes/ptpd/ptpd_1.0.0.bb @@ -1,16 +1,14 @@ -# ptpd build file -LICENSE="BSD" -DESCRIPTION="Precision Time Protocol (PTP) as defined by the IEEE 1588 standard" -HOMEPAGE="http://sourceforge.net/projects/ptpd" +DESCRIPTION = "Precision Time Protocol (PTP) as defined by the IEEE 1588 standard" +HOMEPAGE = "http://sourceforge.net/projects/ptpd" +LICENSE = "BSD" +SECTION = "network" +PR = "r0" SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz" - -S="${WORKDIR}/ptpd-${PV}/src" -PR = "r0" +S = "${WORKDIR}/ptpd-${PV}/src" do_install() { install -d ${D}${bindir} ${D}${mandir}/man8 install -m 4555 ptpd ${D}${bindir} install -m 644 ptpd.8 ${D}${mandir}/man8 } - |