diff options
| -rw-r--r-- | meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 1 | ||||
| -rw-r--r-- | meta-oe/recipes-devtools/squashfs-tools-ng/squashfs-tools-ng_1.0.2.bb | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb index 72421f29f0..4d86ef9775 100644 --- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb +++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | |||
| @@ -275,6 +275,7 @@ RDEPENDS_packagegroup-meta-oe-devtools ="\ | |||
| 275 | python3-distutils-extra \ | 275 | python3-distutils-extra \ |
| 276 | rapidjson \ | 276 | rapidjson \ |
| 277 | sip3 \ | 277 | sip3 \ |
| 278 | squashfs-tools-ng \ | ||
| 278 | uftrace \ | 279 | uftrace \ |
| 279 | libxerces-c \ | 280 | libxerces-c \ |
| 280 | xerces-c-samples \ | 281 | xerces-c-samples \ |
diff --git a/meta-oe/recipes-devtools/squashfs-tools-ng/squashfs-tools-ng_1.0.2.bb b/meta-oe/recipes-devtools/squashfs-tools-ng/squashfs-tools-ng_1.0.2.bb new file mode 100644 index 0000000000..6e2606be68 --- /dev/null +++ b/meta-oe/recipes-devtools/squashfs-tools-ng/squashfs-tools-ng_1.0.2.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | SUMMARY = "New set of tools for working with SquashFS images" | ||
| 2 | SECTION = "base" | ||
| 3 | LICENSE = "GPL-3.0+ & LGPL-3.0+ & MIT & BSD-2-Clause & Zlib" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING.md;md5=c0de2c0aca56349dab98e97992316f7e \ | ||
| 5 | file://licenses/GPLv3.txt;md5=1ebbd3e34237af26da5dc08a4e440464 \ | ||
| 6 | file://licenses/hash_table.txt;md5=874823605326caeaabaa95bfbd0f9fb0 \ | ||
| 7 | file://licenses/LGPLv3.txt;md5=3000208d539ec061b899bce1d9ce9404 \ | ||
| 8 | file://licenses/LZ4.txt;md5=ebc2ea4814a64de7708f1571904b32cc \ | ||
| 9 | file://licenses/xxhash.txt;md5=f042a9be092bd6d7fe6f217d8d00f4ca \ | ||
| 10 | file://licenses/xz.txt;md5=1c389b9610ccfdb25f7abaea6a0bb5a4 \ | ||
| 11 | file://licenses/zlib.txt;md5=ae27c72096606131f760e5f59cf98b06 \ | ||
| 12 | file://licenses/zstd.txt;md5=8df8137b630239cbdd4c0674124cb0c8" | ||
| 13 | |||
| 14 | SRCREV = "b96f0fc154feef531be76034bf6e38925636146f" | ||
| 15 | SRC_URI = "git://github.com/AgentD/squashfs-tools-ng.git;protocol=https" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/git" | ||
| 18 | |||
| 19 | inherit autotools pkgconfig | ||
| 20 | |||
| 21 | PACKAGECONFIG ??= "gzip xz lzo lz4 zstd ${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)}" | ||
| 22 | PACKAGECONFIG[gzip] = "--with-gzip,--without-gzip,zlib" | ||
| 23 | PACKAGECONFIG[xz] = "--with-xz,--without-xz,xz" | ||
| 24 | PACKAGECONFIG[lzo] = "--with-lzo,--without-lzo,lzo" | ||
| 25 | PACKAGECONFIG[lz4] = "--with-lz4,--without-lz4,lz4" | ||
| 26 | PACKAGECONFIG[zstd] = "--with-zstd,--without-zstd,zstd" | ||
| 27 | PACKAGECONFIG[selinux] = "--with-selinux,--without-selinux,libselinux" | ||
| 28 | |||
| 29 | PACKAGES =+ "libsquashfs" | ||
| 30 | FILES_libsquashfs = "${libdir}/libsquashfs*${SOLIBS}" | ||
| 31 | |||
| 32 | BBCLASSEXTEND = "native nativesdk" | ||
