diff options
Diffstat (limited to 'meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb')
-rw-r--r-- | meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb new file mode 100644 index 0000000000..941d92f55b --- /dev/null +++ b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image_0.9.0.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | DESCRIPTION = "GPT Image is used to Create GUID Partition Table disk images \ | ||
2 | on local disks. Written in pure Python gpt-image allows GPT disk images to \ | ||
3 | be built on a local filesystem and exported to a destination device." | ||
4 | SUMMARY = "GPT Image (pure python)" | ||
5 | LICENSE = "MIT" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=db5f8de88d13d0917db21293d0e82e1d" | ||
7 | |||
8 | DEPENDS += "python3-pip" | ||
9 | |||
10 | PYPI_PACKAGE = "gpt_image" | ||
11 | SRC_URI[sha256sum] = "c06d8efc7cf8d6f3954c1c3d8544f494aa95da37fe04e38a9699ad3f57455f7e" | ||
12 | |||
13 | inherit pypi python3native python_setuptools_build_meta ptest-python-pytest | ||
14 | |||
15 | do_install:append() { | ||
16 | rm -fr ${D}${libdir}/python*/site-packages/gpt-image/__pycache__ | ||
17 | } | ||