12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
post_install() {
|
|
local _real_prefix=/clang64
|
|
local _prefix=$(cygpath -wm ${_real_prefix})
|
|
for f in ${_real_prefix}/lib/cmake/Qca-qt6/*.cmake; do
|
|
sed -s "s|${_real_prefix}|${_prefix}|g" -i ${f}
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|