summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2023-04-26 12:12:10 -0400
committerArmin Kuster <akuster808@gmail.com>2023-05-06 07:54:09 -0400
commitae238068259a4135e166d3b2f8c5bd5d31ac4fc8 (patch)
treea678120fe1d1adb164fb711d953bb545c12c98e7
parente92e4dadde01cd4a27bc12b29145f7dd8a6d8f40 (diff)
downloadmeta-security-ae238068259a4135e166d3b2f8c5bd5d31ac4fc8.tar.gz
fscryptctl: update to 1.0.1
Don't build man as it needs pandoc Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--recipes-security/fscryptctl/fscryptctl_1.1.0.bb (renamed from recipes-security/fscryptctl/fscryptctl_1.0.0.bb)7
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-security/fscryptctl/fscryptctl_1.0.0.bb b/recipes-security/fscryptctl/fscryptctl_1.1.0.bb
index d319e48..3de2bfa 100644
--- a/recipes-security/fscryptctl/fscryptctl_1.0.0.bb
+++ b/recipes-security/fscryptctl/fscryptctl_1.1.0.bb
@@ -9,11 +9,16 @@ SECTION = "base"
9LICENSE = "Apache-2.0" 9LICENSE = "Apache-2.0"
10LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" 10LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
11 11
12SRCREV = "56b898c896240328adef7407090215abbe9ee03d" 12SRCREV = "7c80c73c084ce9ea49a03b814dac7a82fd7b4c23"
13SRC_URI = "git://github.com/google/fscryptctl.git;branch=master;protocol=https" 13SRC_URI = "git://github.com/google/fscryptctl.git;branch=master;protocol=https"
14 14
15S = "${WORKDIR}/git" 15S = "${WORKDIR}/git"
16 16
17do_compile:prepend() {
18 sed -i 's/fscryptctl\.1//g' ${S}/Makefile
19 sed -i 's/install-man//g' ${S}/Makefile
20}
21
17do_install() { 22do_install() {
18 oe_runmake DESTDIR=${D} PREFIX=/usr install 23 oe_runmake DESTDIR=${D} PREFIX=/usr install
19} 24}