mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
11 lines
197 B
Text
11 lines
197 B
Text
post_install() {
|
|
grep -q '/opt/qt/lib' etc/ld.so.conf || echo '/opt/qt/lib' >> etc/ld.so.conf
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
sed -ie '/\/opt\/qt\/lib/d' etc/ld.so.conf
|
|
}
|