diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2023-11-03 15:24:53 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-11-03 09:29:34 -0700 |
| commit | 84a940d2f05a23a23c835fa8fb21439f10fa6f1e (patch) | |
| tree | 35bc18a5fa63ba0be89a1e1c1dc323cc4e71fede /meta-python | |
| parent | d66ace65755181db5c17b5ceb5781d24f7eda17a (diff) | |
| download | meta-openembedded-84a940d2f05a23a23c835fa8fb21439f10fa6f1e.tar.gz | |
python3-unoconv: add recipe
Add unoconv version 0.9.0, an universal office converter - convert
between any document format supported by LibreOffice/OpenOffice.
This work was sponsored by GOVCERT.LU.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb b/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb new file mode 100644 index 0000000000..3c944b4f2c --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | SUMMARY = "Universal Office Converter - Office document conversion" | ||
| 2 | HOMEPAGE = "https://github.com/unoconv/unoconv" | ||
| 3 | LICENSE = "GPL-2.0-only" | ||
| 4 | SECTION = "devel/python" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "308ebfd98e67d898834876348b27caf41470cd853fbe2681cc7dacd8fd5e6031" | ||
| 8 | |||
| 9 | inherit pypi setuptools3 | ||
| 10 | |||
| 11 | PYPI_PACKAGE="unoconv" | ||
| 12 | |||
| 13 | RDEPENDS:${PN} += "\ | ||
| 14 | ${PYTHON_PN}-distutils \ | ||
| 15 | ${PYTHON_PN}-core \ | ||
| 16 | ${PYTHON_PN}-shell \ | ||
| 17 | " | ||
| 18 | |||
| 19 | do_install:append() { | ||
| 20 | sed -i -e 's:^#!/usr/bin/env python$:#!/usr/bin/env python3:' ${D}/usr/bin/unoconv | ||
| 21 | } | ||
| 22 | |||
| 23 | BBCLASSEXTEND = "native nativesdk" | ||
