diff options
Diffstat (limited to 'meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.5.1.bb')
| -rw-r--r-- | meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.5.1.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.5.1.bb b/meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.5.1.bb new file mode 100644 index 0000000..4b053b9 --- /dev/null +++ b/meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.5.1.bb | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | SUMMARY = "Parsec Command Line Interface" | ||
| 2 | HOMEPAGE = "https://github.com/parallaxsecond/parsec-tool" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | |||
| 5 | inherit cargo | ||
| 6 | |||
| 7 | SRC_URI += "crate://crates.io/parsec-tool/${PV} \ | ||
| 8 | " | ||
| 9 | |||
| 10 | RDEPENDS:${PN} = "openssl-bin" | ||
| 11 | |||
| 12 | do_install() { | ||
| 13 | install -d ${D}/${bindir} | ||
| 14 | install -m 755 "${B}/target/${TARGET_SYS}/release/parsec-tool" "${D}${bindir}/parsec-tool" | ||
| 15 | install -m 755 "${S}/tests/parsec-cli-tests.sh" "${D}${bindir}/parsec-cli-tests.sh" | ||
| 16 | } | ||
| 17 | |||
| 18 | require parsec-tool_${PV}.inc | ||
