summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2023-11-03 15:24:53 +0200
committerKhem Raj <raj.khem@gmail.com>2023-11-03 09:29:34 -0700
commit84a940d2f05a23a23c835fa8fb21439f10fa6f1e (patch)
tree35bc18a5fa63ba0be89a1e1c1dc323cc4e71fede /meta-python
parentd66ace65755181db5c17b5ceb5781d24f7eda17a (diff)
downloadmeta-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.bb23
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 @@
1SUMMARY = "Universal Office Converter - Office document conversion"
2HOMEPAGE = "https://github.com/unoconv/unoconv"
3LICENSE = "GPL-2.0-only"
4SECTION = "devel/python"
5LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
6
7SRC_URI[sha256sum] = "308ebfd98e67d898834876348b27caf41470cd853fbe2681cc7dacd8fd5e6031"
8
9inherit pypi setuptools3
10
11PYPI_PACKAGE="unoconv"
12
13RDEPENDS:${PN} += "\
14 ${PYTHON_PN}-distutils \
15 ${PYTHON_PN}-core \
16 ${PYTHON_PN}-shell \
17"
18
19do_install:append() {
20 sed -i -e 's:^#!/usr/bin/env python$:#!/usr/bin/env python3:' ${D}/usr/bin/unoconv
21}
22
23BBCLASSEXTEND = "native nativesdk"