diff options
author | Andrew Davis <afd@ti.com> | 2024-12-20 09:26:34 -0600 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-01-22 15:08:56 -0600 |
commit | e97be59f71caf48207bb3742248b4bef84ec1176 (patch) | |
tree | d4a1f0ed7b20fa463d03ec3a1f8890e610a7f585 | |
parent | d56849a9ec5d8829afc62fba2ac36c6117b32f9d (diff) | |
download | meta-ti-e97be59f71caf48207bb3742248b4bef84ec1176.tar.gz |
meta-ti-extras: mathlib: Do not deploy packaged output
This might have been useful for building development packages with
the pre-built binaries for deployment elsewhere, but there are
better ways to do this and these are no longer consumed. Remove
this packaging step.
Signed-off-by: Andrew Davis <afd@ti.com>
-rw-r--r-- | meta-ti-extras/recipes-ti/mathlib/mathlib.inc | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/meta-ti-extras/recipes-ti/mathlib/mathlib.inc b/meta-ti-extras/recipes-ti/mathlib/mathlib.inc index 6ad073ec..34902ba1 100644 --- a/meta-ti-extras/recipes-ti/mathlib/mathlib.inc +++ b/meta-ti-extras/recipes-ti/mathlib/mathlib.inc | |||
@@ -11,7 +11,6 @@ DEPENDS = "ti-cgt6x-native \ | |||
11 | ti-xdctools-native \ | 11 | ti-xdctools-native \ |
12 | ti-sysbios \ | 12 | ti-sysbios \ |
13 | doxygen-native \ | 13 | doxygen-native \ |
14 | zip-native \ | ||
15 | swtools" | 14 | swtools" |
16 | 15 | ||
17 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
@@ -56,19 +55,6 @@ do_install() { | |||
56 | rm -r ${D}${MATHLIB_INSTALL_DIR_RECIPE}/mathlib | 55 | rm -r ${D}${MATHLIB_INSTALL_DIR_RECIPE}/mathlib |
57 | } | 56 | } |
58 | 57 | ||
59 | inherit deploy | ||
60 | addtask deploy before do_build after do_install | ||
61 | |||
62 | do_deploy() { | ||
63 | install -d ${DEPLOYDIR} | ||
64 | # zip up files in ${D}${MATHLIB_INSTALL_DIR_RECIPE} | ||
65 | # and place the zip file in ${DEPLOYDIR} | ||
66 | mkdir ./${MATHLIB_PACKAGE_NAME} | ||
67 | cp -r ${D}${MATHLIB_INSTALL_DIR_RECIPE}/. ./${MATHLIB_PACKAGE_NAME} | ||
68 | zip -9 -y -r -q ${DEPLOYDIR}/${MATHLIB_PACKAGE_NAME}.zip ./${MATHLIB_PACKAGE_NAME} | ||
69 | rm -r ./${MATHLIB_PACKAGE_NAME} | ||
70 | } | ||
71 | |||
72 | ALLOW_EMPTY:${PN} = "1" | 58 | ALLOW_EMPTY:${PN} = "1" |
73 | FILES:${PN}-dev += "${MATHLIB_INSTALL_DIR_RECIPE}" | 59 | FILES:${PN}-dev += "${MATHLIB_INSTALL_DIR_RECIPE}" |
74 | 60 | ||