better handling of install

This commit is contained in:
Hartmut Seichter 2023-06-24 12:04:29 +02:00
parent 76030f564b
commit 8e9654db7c
2 changed files with 44 additions and 37 deletions

9
zed-sdk.install Normal file
View file

@ -0,0 +1,9 @@
post_install() {
echo "The ZED SDK binaries are in /opt/zed/bin"
echo "headers and libraries in /opt/zed/include and /opt/zed/lib "
post_upgrade
}
post_upgrade() {
ldconfig -r .
}