diff options
author | Armin Kuster <akuster808@gmail.com> | 2023-04-26 12:12:10 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-05-06 07:54:09 -0400 |
commit | ae238068259a4135e166d3b2f8c5bd5d31ac4fc8 (patch) | |
tree | a678120fe1d1adb164fb711d953bb545c12c98e7 | |
parent | e92e4dadde01cd4a27bc12b29145f7dd8a6d8f40 (diff) | |
download | meta-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" | |||
9 | LICENSE = "Apache-2.0" | 9 | LICENSE = "Apache-2.0" |
10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" |
11 | 11 | ||
12 | SRCREV = "56b898c896240328adef7407090215abbe9ee03d" | 12 | SRCREV = "7c80c73c084ce9ea49a03b814dac7a82fd7b4c23" |
13 | SRC_URI = "git://github.com/google/fscryptctl.git;branch=master;protocol=https" | 13 | SRC_URI = "git://github.com/google/fscryptctl.git;branch=master;protocol=https" |
14 | 14 | ||
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
16 | 16 | ||
17 | do_compile:prepend() { | ||
18 | sed -i 's/fscryptctl\.1//g' ${S}/Makefile | ||
19 | sed -i 's/install-man//g' ${S}/Makefile | ||
20 | } | ||
21 | |||
17 | do_install() { | 22 | do_install() { |
18 | oe_runmake DESTDIR=${D} PREFIX=/usr install | 23 | oe_runmake DESTDIR=${D} PREFIX=/usr install |
19 | } | 24 | } |