Files
openwrt_yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

24 lines
612 B
BlitzBasic

SUMMARY = "Universal Office Converter - Office document conversion"
HOMEPAGE = "https://github.com/unoconv/unoconv"
LICENSE = "GPL-2.0-only"
SECTION = "devel/python"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
SRC_URI[sha256sum] = "308ebfd98e67d898834876348b27caf41470cd853fbe2681cc7dacd8fd5e6031"
inherit pypi setuptools3
PYPI_PACKAGE="unoconv"
RDEPENDS:${PN} += "\
python3-setuptools \
python3-core \
python3-shell \
"
do_install:append() {
sed -i -e 's:^#!/usr/bin/env python$:#!/usr/bin/env python3:' ${D}/usr/bin/unoconv
}
BBCLASSEXTEND = "native nativesdk"