mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-12-24 13:28:13 +08:00
* cpack deb * cpack prerm script * optim postinst script * generate rpm package * add build fd package doc * update build fd package doc
13 lines
327 B
Bash
13 lines
327 B
Bash
#!/bin/bash
|
|
|
|
case "$1" in
|
|
remove|deconfigure)
|
|
rm -f /etc/ld.so.conf.d/@CPACK_PACKAGE_NAME@.conf
|
|
rm @CMAKE_INSTALL_PREFIX@/@CPACK_PACKAGE_NAME@.conf
|
|
rm -rf @CMAKE_INSTALL_PREFIX@/third_libs/install/tensorrt/lib/
|
|
|
|
ldconfig
|
|
echo "FastDeploy is going to be uninstalled."
|
|
;;
|
|
esac
|