diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-06-28 11:48:18 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-06-29 00:35:58 -0700 |
commit | 3c49eca209f90c57702aa4e9971733beb461f970 (patch) | |
tree | 3636566c0edd7bf88bb20e01c98d9e7b0001160d | |
parent | 0a5c61ce6cf98074dba9934e497a66885874eba7 (diff) | |
download | meta-openembedded-3c49eca209f90c57702aa4e9971733beb461f970.tar.gz |
protobuf-c: misc recipe cleanup
Re-order variables to align more closely with the OE style-guide.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.0.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.0.bb b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.0.bb index fe1e6e5faf..9b696906e8 100644 --- a/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.0.bb +++ b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.0.bb | |||
@@ -8,15 +8,10 @@ has been split out into the protobuf-c-rpc project." | |||
8 | HOMEPAGE = "https://github.com/protobuf-c/protobuf-c" | 8 | HOMEPAGE = "https://github.com/protobuf-c/protobuf-c" |
9 | SECTION = "console/tools" | 9 | SECTION = "console/tools" |
10 | LICENSE = "BSD-2-Clause" | 10 | LICENSE = "BSD-2-Clause" |
11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=cb901168715f4782a2b06c3ddaefa558" | ||
11 | 12 | ||
12 | DEPENDS = "protobuf-native protobuf" | 13 | DEPENDS = "protobuf-native protobuf" |
13 | 14 | ||
14 | PACKAGE_BEFORE_PN = "${PN}-compiler" | ||
15 | RDEPENDS_${PN}-compiler = "protobuf-compiler" | ||
16 | RDEPENDS_${PN}-dev += "${PN}-compiler" | ||
17 | |||
18 | LIC_FILES_CHKSUM = "file://LICENSE;md5=cb901168715f4782a2b06c3ddaefa558" | ||
19 | |||
20 | PV .= "+git${SRCPV}" | 15 | PV .= "+git${SRCPV}" |
21 | SRCREV = "dac1a65feac4ad72f612aab99f487056fbcf5c1a" | 16 | SRCREV = "dac1a65feac4ad72f612aab99f487056fbcf5c1a" |
22 | 17 | ||
@@ -26,6 +21,11 @@ S = "${WORKDIR}/git" | |||
26 | 21 | ||
27 | inherit autotools pkgconfig | 22 | inherit autotools pkgconfig |
28 | 23 | ||
24 | PACKAGE_BEFORE_PN = "${PN}-compiler" | ||
25 | |||
29 | FILES_${PN}-compiler = "${bindir}" | 26 | FILES_${PN}-compiler = "${bindir}" |
30 | 27 | ||
28 | RDEPENDS_${PN}-compiler = "protobuf-compiler" | ||
29 | RDEPENDS_${PN}-dev += "${PN}-compiler" | ||
30 | |||
31 | BBCLASSEXTEND = "native nativesdk" | 31 | BBCLASSEXTEND = "native nativesdk" |