diff options
| author | cajun-rat <phil@advancedtelematic.com> | 2017-11-01 13:39:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-01 13:39:30 +0100 |
| commit | 32eb7ff8fc9b10200a74ab8fad632c6fe7a686bd (patch) | |
| tree | 2073b11876bb82046c7a7141b1426233840a960d | |
| parent | eceaca216c73bd188821e111a73723069668e1f3 (diff) | |
| parent | 9f838e7fb4e3dbecfeea3fb418d3112c0b7dc261 (diff) | |
| download | meta-updater-32eb7ff8fc9b10200a74ab8fad632c6fe7a686bd.tar.gz | |
Merge pull request #155 from advancedtelematic/feat/PRO-4219/garage-sign-recipe
New garage-sign recipe.
| -rw-r--r-- | recipes-sota/garage-sign/garage-sign.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes-sota/garage-sign/garage-sign.bb b/recipes-sota/garage-sign/garage-sign.bb new file mode 100644 index 0000000..0c962cd --- /dev/null +++ b/recipes-sota/garage-sign/garage-sign.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | SUMMARY = "garage-sign" | ||
| 2 | DESCRIPTION = "Metadata signing tool for ATS Garage" | ||
| 3 | HOMEPAGE = "https://ats-tuf-cli-releases.s3-eu-central-1.amazonaws.com/index.html" | ||
| 4 | SECTION = "base" | ||
| 5 | LICENSE = "CLOSED" | ||
| 6 | LIC_FILES_CHKSUM = "file://${S}/docs/LICENSE;md5=3025e77db7bd3f1d616b3ffd11d54c94" | ||
| 7 | DEPENDS = "" | ||
| 8 | |||
| 9 | PV = "0.2.0-5-g29532a5" | ||
| 10 | |||
| 11 | SRC_URI = " \ | ||
| 12 | https://ats-tuf-cli-releases.s3-eu-central-1.amazonaws.com/cli-${PV}.tgz \ | ||
| 13 | " | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "496ee983f03218f3e3f8d4f56c5d8d8d" | ||
| 16 | SRC_URI[sha256sum] = "1ab296d7abadc40f5ad851ae62a7dff8423bd7167fa9fdc1972c88c5fe90dd40" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/${BPN}" | ||
| 19 | |||
| 20 | BBCLASSEXTEND =+ "native" | ||
| 21 | |||
| 22 | do_install() { | ||
| 23 | install -d ${D}${bindir} | ||
| 24 | install -m "0755" -t ${D}${bindir} ${S}/bin/* | ||
| 25 | install -d ${D}${libdir} | ||
| 26 | install -m "0644" -t ${D}${libdir} ${S}/lib/* | ||
| 27 | } | ||
| 28 | |||
