From 1c17e5bc52e732ee453a5e3d52e8131330cbb9ad Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 16 Feb 2021 23:23:56 +0000 Subject: [PATCH] [recipe] crankshaft-helpers Added recipe --- .../crankshaft-helpers_0.0.1.bb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 meta-crankshaft/recipes-crankshaft/crankshaft-helpers/crankshaft-helpers_0.0.1.bb diff --git a/meta-crankshaft/recipes-crankshaft/crankshaft-helpers/crankshaft-helpers_0.0.1.bb b/meta-crankshaft/recipes-crankshaft/crankshaft-helpers/crankshaft-helpers_0.0.1.bb new file mode 100644 index 0000000..a7f5a56 --- /dev/null +++ b/meta-crankshaft/recipes-crankshaft/crankshaft-helpers/crankshaft-helpers_0.0.1.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "Crankshaft Helpers" +SECTION = "libs" +LICENSE = "crankshaft" +HOMEPAGE = "http://getcrankshaft.com" + +DEPENDS = "crankshaft" + +PR = "r0" +LIC_FILES_CHKSUM = "file://ChangeLog;md5=11dcab5b31f55cab7c13058279c5e923" +SRC_URI= "https://raw.githubusercontent.com/opencardev/prebuilts/master/csmt/crankshaft;name=crankshaft \ +https://raw.githubusercontent.com/opencardev/prebuilts/master/openauto/autoapp_helper;name=autoapp_helper \ +" +SRC_URI[crankshaft.md5sum] = "26cb4d70aa81284b5830b20c19d72234" +SRC_URI[autoapp_helper.md5sum] = "696884d8ea1137895d71cb395ba7be4e" + +do_install() { + install -d ${D}/usr/local/bin + install -m 0644 ${S}/crankshaft ${D}/usr/local/bin/crankshaft + install -m 0644 ${S}/autoapp_helper ${D}/usr/local/bin/autoapp_helper +}