13 lines
311 B
Plaintext
13 lines
311 B
Plaintext
post_install() {
|
|
_mingw=mingw64
|
|
cd ${_mingw}
|
|
local _prefix=$(pwd -W)
|
|
cd -
|
|
sed -e "s|/${_mingw}|${_prefix}|g" -i ${_mingw}/lib/oce/OCE-libraries.cmake
|
|
sed -e 's|;[A-Z]:\/[^ ;]*\?\/'${_mingw}'|;${_IMPORT_PREFIX}|g' -i ${_mingw}/lib/oce/OCE-libraries-release.cmake
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|