mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
13 lines
300 B
Text
13 lines
300 B
Text
|
post_install() {
|
||
|
ln -s /usr/lib/libfreeimage-3.11.0.so /usr/lib/libfreeimage.so
|
||
|
ln -s /usr/lib/libfreeimage-3.11.0.so /usr/lib/libfreeimage.so.3
|
||
|
/sbin/ldconfig
|
||
|
}
|
||
|
post_upgrade() {
|
||
|
/sbin/ldconfig
|
||
|
}
|
||
|
post_remove() {
|
||
|
rm /usr/lib/libfreeimage.so
|
||
|
rm /usr/lib/libfreeimage.so.3
|
||
|
/sbin/ldconfig
|
||
|
}
|