diff options
| author | Trevor Woerner <twoerner@gmail.com> | 2018-05-24 14:26:58 -0400 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-05-29 12:56:19 -0700 |
| commit | ba2b7b51959c4e2b1704b58ab31607d63616773b (patch) | |
| tree | 301c6600f78389b3e0d12e0d6ccb824ad26ac239 | |
| parent | 61610d1fe6c3d2aa9dd0ae35f3d2743fdf5c5f44 (diff) | |
| download | meta-openembedded-ba2b7b51959c4e2b1704b58ab31607d63616773b.tar.gz | |
capnproto: variable cleanup
Reorder recipe variables according to:
https://www.openembedded.org/wiki/Styleguide
Originally-conceived-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-devtools/capnproto/capnproto_0.6.1.bb | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/meta-oe/recipes-devtools/capnproto/capnproto_0.6.1.bb b/meta-oe/recipes-devtools/capnproto/capnproto_0.6.1.bb index dfe19947c0..6ca3613db3 100644 --- a/meta-oe/recipes-devtools/capnproto/capnproto_0.6.1.bb +++ b/meta-oe/recipes-devtools/capnproto/capnproto_0.6.1.bb | |||
| @@ -2,24 +2,23 @@ SUMMARY = "Cap'n Proto serialization/RPC system" | |||
| 2 | DESCRIPTION = "Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. " | 2 | DESCRIPTION = "Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. " |
| 3 | HOMEPAGE = "https://github.com/sandstorm-io/capnproto" | 3 | HOMEPAGE = "https://github.com/sandstorm-io/capnproto" |
| 4 | SECTION = "console/tools" | 4 | SECTION = "console/tools" |
| 5 | |||
| 6 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
| 7 | LIC_FILES_CHKSUM = "file://../LICENSE;md5=0a5b5b742baf10cc1c158579eba7fb1d" | 6 | LIC_FILES_CHKSUM = "file://../LICENSE;md5=0a5b5b742baf10cc1c158579eba7fb1d" |
| 8 | 7 | ||
| 9 | SRCREV = "c949a18da5f041a36cc218c5c4b79c7705999b4f" | ||
| 10 | SRC_URI = "git://github.com/sandstorm-io/capnproto.git;branch=release-${PV}" | 8 | SRC_URI = "git://github.com/sandstorm-io/capnproto.git;branch=release-${PV}" |
| 9 | SRCREV = "c949a18da5f041a36cc218c5c4b79c7705999b4f" | ||
| 10 | |||
| 11 | S = "${WORKDIR}/git/c++" | ||
| 12 | |||
| 13 | inherit cmake | ||
| 11 | 14 | ||
| 12 | EXTRA_OECMAKE += "\ | 15 | EXTRA_OECMAKE += "\ |
| 13 | -DBUILD_TESTING=OFF \ | 16 | -DBUILD_TESTING=OFF \ |
| 14 | " | 17 | " |
| 15 | 18 | ||
| 16 | inherit cmake | 19 | FILES_${PN}-compiler = "${bindir}" |
| 17 | |||
| 18 | S = "${WORKDIR}/git/c++" | ||
| 19 | 20 | ||
| 20 | PACKAGE_BEFORE_PN = "${PN}-compiler" | 21 | PACKAGE_BEFORE_PN = "${PN}-compiler" |
| 21 | RDEPENDS_${PN}-dev += "${PN}-compiler" | 22 | RDEPENDS_${PN}-dev += "${PN}-compiler" |
| 22 | 23 | ||
| 23 | FILES_${PN}-compiler = "${bindir}" | ||
| 24 | |||
| 25 | BBCLASSEXTEND = "native nativesdk" | 24 | BBCLASSEXTEND = "native nativesdk" |
