mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
12 lines
197 B
Text
12 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
|
||
|
}
|