summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/composefs/composefs_1.0.3.bb14
1 files changed, 11 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/composefs/composefs_1.0.3.bb b/meta-oe/recipes-support/composefs/composefs_1.0.3.bb
index 98eb3e1b34..76c85ce93f 100644
--- a/meta-oe/recipes-support/composefs/composefs_1.0.3.bb
+++ b/meta-oe/recipes-support/composefs/composefs_1.0.3.bb
@@ -1,4 +1,7 @@
1SUMMARY = "Tools to handle creating and mounting composefs images" 1SUMMARY = "Tools to handle creating and mounting composefs images"
2DESCRIPTION = "The composefs project combines several underlying Linux \
3features to provide a very flexible mechanism to support read-only mountable \
4filesystem trees, stacking on top of an underlying "lower" Linux filesystem."
2HOMEPAGE = "https://github.com/containers/composefs" 5HOMEPAGE = "https://github.com/containers/composefs"
3LICENSE = "GPL-3.0-or-later & LGPL-2.0-or-later & Apache-2.0" 6LICENSE = "GPL-3.0-or-later & LGPL-2.0-or-later & Apache-2.0"
4LIC_FILES_CHKSUM = "\ 7LIC_FILES_CHKSUM = "\
@@ -9,10 +12,8 @@ LIC_FILES_CHKSUM = "\
9 file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \ 12 file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \
10 file://LICENSE.Apache-2.0;md5=3b83ef96387f14655fc854ddc3c6bd57 \ 13 file://LICENSE.Apache-2.0;md5=3b83ef96387f14655fc854ddc3c6bd57 \
11" 14"
12DEPENDS = "openssl"
13SRCREV = "2d5cdcb9176cfe4ccf1761ef6d78e1c48de35649"
14PV = "1.0.3"
15 15
16SRCREV = "2d5cdcb9176cfe4ccf1761ef6d78e1c48de35649"
16SRC_URI = "\ 17SRC_URI = "\
17 git://github.com/containers/composefs.git;protocol=https;branch=main \ 18 git://github.com/containers/composefs.git;protocol=https;branch=main \
18 file://0001-musl-basename-use-portable-implementation-for-basena.patch \ 19 file://0001-musl-basename-use-portable-implementation-for-basena.patch \
@@ -21,3 +22,10 @@ SRC_URI = "\
21S = "${WORKDIR}/git" 22S = "${WORKDIR}/git"
22 23
23inherit autotools pkgconfig 24inherit autotools pkgconfig
25
26DEPENDS = "openssl"
27
28EXTRA_OECONF += " \
29 --disable-man \
30 --without-fuse \
31"