diff options
author | Ross Burton <ross.burton@arm.com> | 2023-05-09 14:36:31 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-09 17:27:51 -0700 |
commit | 293af818724cbcc789682f12c8df8e4d3017fde4 (patch) | |
tree | a0237691662530269167f83868f902c089890e5a /meta-filesystems/recipes-filesystems/burnia | |
parent | 5f64e51e5e945fa41f6447192144b5b36456b45b (diff) | |
download | meta-openembedded-293af818724cbcc789682f12c8df8e4d3017fde4.tar.gz |
libisoburn: add new recipe
libisoburn is the library and command-line tool (xorriso) that can
construct ISO-9660 images and write them to physical media.
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-filesystems/recipes-filesystems/burnia')
-rw-r--r-- | meta-filesystems/recipes-filesystems/burnia/libisoburn_1.5.4.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-filesystems/burnia/libisoburn_1.5.4.bb b/meta-filesystems/recipes-filesystems/burnia/libisoburn_1.5.4.bb new file mode 100644 index 0000000000..f263b51350 --- /dev/null +++ b/meta-filesystems/recipes-filesystems/burnia/libisoburn_1.5.4.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "library and tool to create and burn ISO-9660 images" | ||
2 | HOMEPAGE = "https://libburnia-project.org/" | ||
3 | |||
4 | LICENSE = "GPL-2.0-or-later" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88 \ | ||
6 | file://COPYRIGHT;md5=43cfe25a7e4a65f722d6253fa0649bb1" | ||
7 | |||
8 | SRC_URI = "http://files.libburnia-project.org/releases/libisoburn-${PV}.tar.gz" | ||
9 | SRC_URI[sha256sum] = "2d89846d43880f17fa591c53b3bea42ffb803628e4e630c680fc2c9184f79132" | ||
10 | |||
11 | DEPENDS = "libisofs libburn" | ||
12 | # This replaces the xorriso recipe | ||
13 | PROVIDES += "xorriso" | ||
14 | |||
15 | inherit autotools pkgconfig | ||
16 | |||
17 | EXTRA_OECONF = "--enable-pkg-check-modules" | ||
18 | |||
19 | do_install:append() { | ||
20 | # This is a proof-of-concept UI using Tk, don't ship it | ||
21 | rm -f ${D}${bindir}/xorriso-tcltk | ||
22 | } | ||
23 | |||
24 | PACKAGE_BEFORE_PN = "xorriso" | ||
25 | FILES:xorriso = "${bindir}" | ||
26 | |||
27 | BBCLASSEXTEND = "native" | ||